[Q] Python and math

Travis Oliphant oliphant at ee.byu.edu
Wed Aug 15 16:28:03 EDT 2001


On Wed, 15 Aug 2001, Young-Jin Lee wrote:

> Hi, I'm wondering if there's a open source python code for solving ODE
> (ordinary differential equations)?
> I want to convert my Java application into Python, but I'm not sure if there
> is a ODE solver written and available in Python.
>
> Thanks in advance.

Go to www.scipy.org

and get Scientific Python which has an ODE solver in the integrate
sub-package.

After installation, do

>>> from scipy import *
>>> help(integrate.odeint)

to get some help on how to use the integrator.

-Travis Oliphant





More information about the Python-list mailing list