SciPy

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

scipy.interpolate.pchip.derivative

pchip.derivative(nu=1)[source]

Construct a new piecewise polynomial representing the derivative.

Parameters:
nu : int, optional

Order of derivative to evaluate. Default is 1, i.e. compute the first derivative. If negative, the antiderivative is returned.

Returns:
bp : BPoly

Piecewise polynomial of order k - nu representing the derivative of this polynomial.