bundles / scipy 1.17.1 / scipy / integrate / _vode / zvode
built-in
scipy.integrate._vode:zvode
Summary
Solve complex 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 (complex).
jac: callable or NoneJacobian function jac(t, y, *args) returning df/dy (optional).
y0: array_like, complexInitial condition vector.
t0: floatInitial time (real).
t1: floatOutput time (real).
rtol: array_like, realRelative tolerance(s).
atol: array_like, realAbsolute tolerance(s).
itask: intTask indicator (1-5).
istate: intState indicator (1=first call, 2=continue, 3=continue with new params).
zwork: array_like, complexComplex workspace array.
rwork: array_like, realReal workspace array.
iwork: array_like, intInteger workspace array.
mf: intMethod flag.
args: tuple, optionalExtra arguments passed to f and jac.
Returns
y: ndarray, complexSolution at t1.
t: floatActual time reached (may differ from t1 if error occurred).
istate: intState indicator (2=success, negative=error).
Aliases
-
scipy.integrate._vode.zvode