I don't see anything in hackage off the top of my head. If it's a set of DEs like that, Runge-Kutta is a good place to start if you want to code your own integrator: http://en.wikipedia.org/wiki/Runge-Kutta#The_classical_fourth-order_Runge.E2.80.93Kutta_method
But if it were me I would just use an integrator built in to ocatve: http://www.gnu.org/software/octave/ -Antoine On 9/25/07, Thomas Girod <[EMAIL PROTECTED]> wrote: > Hi there. > > Let's say I have mathematical model composed of several differential > equations, such as : > > di/dt = cos(i) > dc/dt = alpha * (i(t) - c(t)) > > (sorry my maths are really bad, but I hope you get the point) > > I would like to approximate the evolution of such a system iteratively. How > would you do that in haskell ? > > cheers, > > Thomas > > _______________________________________________ > Haskell-Cafe mailing list > [email protected] > http://www.haskell.org/mailman/listinfo/haskell-cafe > > _______________________________________________ Haskell-Cafe mailing list [email protected] http://www.haskell.org/mailman/listinfo/haskell-cafe
