T.Crane wrote:
> Hi,
>
> OK, I'm trying to figure out how to use the ODE solver
> (scipy.integrate.ode.ode).
You will get more help from the scipy-user list than you will here.
http://www.scipy.org/Mailing_Lists
> Here's what I'm doing (in iPython)
>
> y0 = [0,1,1]
> dt = 0.01
> tEnd = 12
>
Hi,
OK, I'm trying to figure out how to use the ODE solver
(scipy.integrate.ode.ode). Here's what I'm doing (in iPython)
y0 = [0,1,1]
dt = 0.01
tEnd = 12
t0 = 0
Y = zeros([tEnd/dt, 3])
As an aside, I've used this assignment for Y in the past and it
worked. When I tried it this morning I got a