bundles / scipy latest / scipy / integrate / _ode / complex_ode
class
scipy.integrate._ode:complex_ode
source: /scipy/integrate/_ode.py :580
Signature
class complex_ode ( f , jac = None ) Members
Summary
A wrapper of ode for complex systems.
Extended Summary
This functions similarly as ode, but re-maps a complex-valued equation system to a real-valued one before using the integrators.
Parameters
f: callable ``f(t, y, *f_args)``Rhs of the equation. t is a scalar,
y.shape == (n,).f_argsis set by callingset_f_params(*args).jac: callable ``jac(t, y, *jac_args)``Jacobian of the rhs,
jac[i,j] = d f[i] / d y[j].jac_argsis set by callingset_f_params(*args).
Attributes
t: floatCurrent time.
y: ndarrayCurrent variable values.
Examples
For usage examples, see `ode`.Aliases
-
scipy.integrate.complex_ode