bundles / scipy 1.17.1 / scipy / interpolate / _polyint / _Interpolator1DWithDerivatives / derivatives
function
scipy.interpolate._polyint:_Interpolator1DWithDerivatives.derivatives
Signature
def derivatives ( self , x , der = None ) Summary
Evaluate several derivatives of the polynomial at the point x
Extended Summary
Produce an array of derivatives evaluated at the point x.
Parameters
x: array_likePoint or points at which to evaluate the derivatives
der: int or list or None, optionalHow many derivatives to evaluate, or None for all potentially nonzero derivatives (that is, a number equal to the number of points), or a list of derivatives to evaluate. This number includes the function value as the '0th' derivative.
Returns
d: ndarrayArray with derivatives;
d[j]contains the jth derivative. Shape ofd[j]is determined by replacing the interpolation axis in the original array with the shape ofx.
Examples
from scipy.interpolate import KroghInterpolator
✓KroghInterpolator([0,0,0],[1,2,3]).derivatives(0) KroghInterpolator([0,0,0],[1,2,3]).derivatives([0,0])✗
Aliases
-
scipy.interpolate._polyint._Interpolator1DWithDerivatives.derivatives