SciPy

This is documentation for an old release of SciPy (version 1.5.3). Read this page in the documentation of the latest stable release (version 1.15.1).

scipy.integrate.OdeSolution.__call__

OdeSolution.__call__(self, t)[source]

Evaluate the solution.

Parameters
tfloat or array_like with shape (n_points,)

Points to evaluate at.

Returns
yndarray, shape (n_states,) or (n_states, n_points)

Computed values. Shape depends on whether t is a scalar or a 1-D array.

Previous topic

scipy.integrate.OdeSolution

Next topic

scipy.integrate.odeint