numpy.polynomial.hermite.hermder()
numpy.polynomial.hermite.hermder
-
numpy.polynomial.hermite.hermder(c, m=1, scl=1, axis=0)
[source] -
Differentiate a Hermite series.
Returns the Hermite series coefficients
c
differentiatedm
times alongaxis
. At each iteration the result is multiplied byscl
(the scaling factor is for use in a linear change of variable). The argumentc
is an array of coefficients from low to high degree along each axis, e.g., [1,2,3] represents the series1*H_0 + 2*H_1 + 3*H_2
while [[1,2],[1,2]] represents1*H_0(x)*H_0(y) + 1*H_1(x)*H_0(y) + 2*H_0(x)*H_1(y) + 2*H_1(x)*H_1(y)
i