{ } Raw JSON

bundles / scipy 1.17.1 / scipy / integrate / _ode / ode / set_solout

function

scipy.integrate._ode:ode.set_solout

source: /scipy/integrate/_ode.py :538

Signature

def   set_solout ( self solout )

Summary

Set callable to be called at every successful integration step.

Parameters

solout : callable

solout(t, y) is called at each internal integrator step, t is a scalar providing the current independent position y is the current solution y.shape == (n,) solout should return -1 to stop integration otherwise it should return None or 0

Aliases

  • scipy.integrate.ode.set_solout

Referenced by

This package