Search All of the Math Forum:
Views expressed in these public forums are not endorsed by
Drexel University or The Math Forum.
|
|
|
|
Re: non optimized inner for loops
Posted:
Nov 25, 2012 4:59 AM
|
|
Hi Sasa,
questions, improving the performance of the Mathematica code are often posted. Many people think, that usual approaches will help, if you write c, c++ or pascal code sometimes combined with the Compile[].
Read a book or join a online course programming in Mathematica by WRI and find out how to use
l = Table[Sin[x], {x, 0, 10 Pi, 10 Pi/10^6}] // N; Plus @@ l // Timing
or Select[], /@ and & (pure functions) etc..
The Mathematica help system is also useful if you look for @@ and then open one item under see also.
Peter
2012/11/23 Sasa B <neprihvatljivo@gmail.com>
> I am aware of more advanced functions and approaches, it is just that I > don't know how to apply them :) > If anybody tries to evaluate code above, there is one error, variable d1 > needs to be initialized with, say d1=10. > > thanks >
|
|
|
|