Re: non optimized inner for loops
- To: mathgroup at smc.vnet.net
- Subject: [mg128779] Re: non optimized inner for loops
- From: Peter Klamser <klamser at googlemail.com>
- Date: Sun, 25 Nov 2012 04:59:30 -0500 (EST)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- Delivered-to: l-mathgroup@wolfram.com
- Delivered-to: mathgroup-newout@smc.vnet.net
- Delivered-to: mathgroup-newsend@smc.vnet.net
- References: <20121122004714.A8788685B@smc.vnet.net>
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 at 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
>
- References:
- non optimized inner for loops
- From: Sasa B <neprihvatljivo@gmail.com>
- non optimized inner for loops