scipy 1.8.0 Pypi GitHub Homepage
Other Docs
NotesParametersReturnsBackRef
derivative(self, n=1)

Notes

versionadded

Parameters

n : int, optional

Order of derivative to evaluate. Default: 1

Returns

spline : UnivariateSpline

Spline of order k2=k-n representing the derivative of this spline.

Construct a new spline representing the derivative of this spline.

See Also

antiderivative
splder

Examples

This can be used for finding maxima of a curve:

>>> from scipy.interpolate import UnivariateSpline
... x = np.linspace(0, 10, 70)
... y = np.sin(x)
... spl = UnivariateSpline(x, y, k=4, s=0)

Now, differentiate the spline and find the zeros of the derivative. (NB: :None:None:`sproot` only works for order 3 splines, so we fit an order 4 spline):

>>> spl.derivative().roots() / np.pi
array([ 0.50000001,  1.5       ,  2.49999998])

This agrees well with roots $\pi/2 + n\pi$ of $\cos(x) = \sin'(x)$ .

See :

Back References

The following pages refer to to this document either explicitly or contain code examples using this.

scipy.interpolate._fitpack2.UnivariateSpline.derivative scipy.interpolate._fitpack2.UnivariateSpline.antiderivative

Local connectivity graph

Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.

Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)

SVG is more flexible but power hungry; and does not scale well to 50 + nodes.

All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them


GitHub : /scipy/interpolate/_fitpack2.py#469
type: <class 'function'>
Commit: