Hard to tell without more information. As Mauro said an example would be good
and also the version of ODE.jl you are using (via `Pkg.installed("ODE")`).
Probably you just need to interchange x and t when calling ode4, I.e.
tout,yout=ODE.ode4(functionName,x,t)
Best,
Alex.
On Wednesday, 6 May 2015 19:14:12 UTC+2, Lytu wrote:
> I have issues with :
> tout,yout=ODE.ode4((t,x)->functionName(t,x),t,x)
> it gives the error: BoundsError() in julia version 0.3.6 but works perfectly
> in julia version 0.3.0.
> Can someone tell me how to fix this problem please?
> Thank you