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 fondamentaux
Voir le programme détaillé
Classe « NdPPoly »

Méthode scipy.interpolate.NdPPoly.derivative

Signature de la méthode derivative

def derivative(self, nu) 

Description

help(NdPPoly.derivative)

Construct a new piecewise polynomial representing the derivative.

Parameters
----------
nu : ndim-tuple of int
    Order of derivatives to evaluate for each dimension.
    If negative, the antiderivative is returned.

Returns
-------
pp : NdPPoly
    Piecewise polynomial of orders (k[0] - nu[0], ..., k[n] - nu[n])
    representing the derivative of this polynomial.

Notes
-----
Derivatives are evaluated piecewise for each polynomial
segment, even if the polynomial is not differentiable at the
breakpoints. The polynomial intervals in each dimension are
considered half-open, ``[a, b)``, except for the last interval
which is closed ``[a, b]``.



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