Difference between revisions of "Software tutorial/Integration of ODEs"
Jump to navigation
Jump to search
m (Created page with "ODE's in Python: * ideint: initial value problems (wraps lsoda from Fortran's ODEPACK) * scipy.integrate.ode; wraps several Fortran solvers, e.g. <tt>scipy.integrate.romberg</tt>...") |
m |
||
Line 1: | Line 1: | ||
ODE's in Python: | In our course we have learned several ways of integrating a single equation \(\frac{dy(t)}{dt} = f(t, y) \) with a given initial condition \(y(t=0)=y_0\). | ||
<!-- ODE's in Python: | |||
* ideint: initial value problems (wraps lsoda from Fortran's ODEPACK) | * ideint: initial value problems (wraps lsoda from Fortran's ODEPACK) | ||
* scipy.integrate.ode; wraps several Fortran solvers, e.g. <tt>scipy.integrate.romberg</tt> | * scipy.integrate.ode; wraps several Fortran solvers, e.g. <tt>scipy.integrate.romberg</tt> | ||
--> | |||
{| class="wikitable" | {| class="wikitable" | ||
|- | |- |
Revision as of 17:04, 15 November 2010
In our course we have learned several ways of integrating a single equation \(\frac{dy(t)}{dt} = f(t, y) \) with a given initial condition \(y(t=0)=y_0\).
MATLAB | Python |
---|---|