NumPy

Previous topic

numpy.polynomial.hermite.Hermite.degree

Next topic

numpy.polynomial.hermite.Hermite.fit

This is documentation for an old release of NumPy (version 1.19). Read this page in the documentation of the latest stable release (version 2.2).

numpy.polynomial.hermite.Hermite.deriv

method

Hermite.deriv(self, m=1)[source]

Differentiate.

Return a series instance of that is the derivative of the current series.

Parameters
mnon-negative int

Find the derivative of order m.

Returns
new_seriesseries

A new series representing the derivative. The domain is the same as the domain of the differentiated series.