{ } Raw JSON

bundles / scipy latest / 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 : callable

Right-hand side function f(t, y, *args) returning dy/dt (complex).

jac : callable or None

Jacobian function jac(t, y, *args) returning df/dy (optional).

y0 : array_like, complex

Initial condition vector.

t0 : float

Initial time (real).

t1 : float

Output time (real).

rtol : array_like, real

Relative tolerance(s).

atol : array_like, real

Absolute tolerance(s).

itask : int

Task indicator (1-5).

istate : int

State indicator (1=first call, 2=continue, 3=continue with new params).

zwork : array_like, complex

Complex workspace array.

rwork : array_like, real

Real workspace array.

iwork : array_like, int

Integer workspace array.

mf : int

Method flag.

args : tuple, optional

Extra arguments passed to f and jac.

Returns

y : ndarray, complex

Solution at t1.

t : float

Actual time reached (may differ from t1 if error occurred).

istate : int

State indicator (2=success, negative=error).

Aliases

  • scipy.integrate._vode.zvode