speeding up runge kutta



On 5/2/07, sen1 at math.msu.edu <sen1 at math.msu.edu> wrote:
>
> ...using the 'reverse list trick' which Stavros suggested...


Since my name is being mentioned, I feel bound to look over the code....

Here is a suggestion for simplifying the code:

rk_list(VF,y,step_size,NumPoints):=
       makelist(  y: rk_ode(VF,y,step_size),  i, 1, NumPoints) $

Hope this is helpful.

        -s