Metadata-Version: 2.1
Name: odeintw
Version: 0.1.1
Summary: Solve complex and matrix differential equations with scipy.integrate.odeint.
Home-page: https://github.com/WarrenWeckesser/odeintw
Author: Warren Weckesser
Author-email: UNKNOWN
License: UNKNOWN
Keywords: scipy odeint
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Requires-Dist: scipy


odeintw
=======

`odeintw` provides a wrapper of `scipy.integrate.odeint` that allows it to
handle complex and matrix differential equations.  That is, it can solve
equations of the form

    dZ/dt = F(Z, t, param1, param2, ...)

where `t` is real and `Z` is a real or complex array.

Since `odeintw` is just a wrapper of `scipy.integrate.odeint`, it requires
`scipy` to be installed.

See README.md at https://github.com/WarrenWeckesser/odeintw for examples.


