bundles / scipy latest / scipy / integrate / _ode / ode / integrate
function
scipy.integrate._ode:ode.integrate
source: /scipy/integrate/_ode.py :384
Signature
def integrate ( self , t , step = False , relax = False ) Summary
Find y=y(t), set y as an initial condition, and return y.
Parameters
t: floatThe endpoint of the integration step.
step: boolIf True, and if the integrator supports the step method, then perform a single integration step and return. This parameter is provided in order to expose internals of the implementation, and should not be changed from its default value in most cases.
relax: boolIf True and if the integrator supports the run_relax method, then integrate until t_1 >= t and return.
relaxis not referenced ifstep=True. This parameter is provided in order to expose internals of the implementation, and should not be changed from its default value in most cases.
Returns
y: floatThe integrated value at t
Aliases
-
scipy.integrate.ode.integrate