bundles / scipy latest / scipy / integrate / _vode / dvode
built-in
scipy.integrate._vode:dvode
Summary
Solve real ODE system dy/dt = f(t,y) using variable-coefficient ODE solver.
Parameters
f: callableRight-hand side function f(t, y, *args) returning dy/dt.
jac: callable or NoneJacobian function jac(t, y, *args) returning df/dy (optional).
y0: array_likeInitial condition vector.
t0: floatInitial time.
t1: floatOutput time.
rtol: array_likeRelative tolerance(s).
atol: array_likeAbsolute tolerance(s).
itask: intTask indicator (1-5).
istate: intState indicator (1=first call, 2=continue, 3=continue with new params).
rwork: array_likeReal workspace array (preserves solver state between calls).
iwork: array_likeInteger workspace array (preserves solver state between calls).
mf: intMethod flag.
args: tuple, optionalExtra arguments passed to f and jac.
Returns
y: ndarraySolution at t1.
t: floatActual time reached (may differ from t1 if error occurred).
istate: intState indicator (2=success, negative=error).
Aliases
-
scipy.integrate._vode.dvode