Aaron,
In this specific case, I'm solving 6 first order ODEs. dx1/dt through dx6/dt, with initial conditions. Specifically, the equations look something like:
dx1/dt = x4
dx2/dt = x5
dx3/dt = x6
dx4/dt = -constant*(x1)/r - constant*(x4)/constant
dx5/dt = -constant*(x2)/r - constant*(x5)/constant
dx6/dt = -constant*(x3)/r - constant*(x6)/constant
the problem is, that the input array for F(x,t) will only accept the first two equations. As I stated, it will take all 6 initial conditions and all 6 variable names (x1 through x6).
It's ok tho... I'm just gonna code it in C++. It's easier to write my own RK4 🙂
Thanks for your time and replies tho.
Guy