Participer au site avec un Tip
Rechercher
 

Améliorations / Corrections

Vous avez des améliorations (ou des corrections) à proposer pour ce document : je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.

Emplacement :

Description des améliorations :

Vous êtes un professionnel et vous avez besoin d'une formation ? Programmation Python
Les compléments
Voir le programme détaillé
Classe « ode »

Méthode scipy.integrate.ode.integrate

Signature de la méthode integrate

def integrate(self, t, step=False, relax=False) 

Description

help(ode.integrate)

Find y=y(t), set y as an initial condition, and return y.

Parameters
----------
t : float
    The endpoint of the integration step.
step : bool
    If 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 : bool
    If True and if the integrator supports the run_relax method,
    then integrate until t_1 >= t and return. ``relax`` is not
    referenced if ``step=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 : float
    The integrated value at t


Vous êtes un professionnel et vous avez besoin d'une formation ? Coder avec une
Intelligence Artificielle
Voir le programme détaillé