原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.polynomial.hermite.hermder.html
校对:(虚位以待)
numpy.polynomial.hermite.
hermder
(c, m=1, scl=1, axis=0)[source]区分一个Hermite系列。
返回沿轴的Hermite系数c微分m在每次迭代时,结果乘以scl(比例因子用于变量的线性变化)。The argument c is an array of coefficients from low to high degree along each axis, e.g., [1,2,3] represents the series 1*H_0 + 2*H_1 + 3*H_2
while [[1,2],[1,2]] represents 1*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)
if axis=0 is x
and axis=1 is y
.
参数: | c:array_like
m:int,可选
scl:标量,可选
axis:int,可选
|
---|---|
返回: | der:ndarray
|
也可以看看
笔记
一般来说,区分Hermite系列的结果与功率系列上的操作不相似。因此,这个函数的结果可能是“不直观的”,虽然正确;请参阅下面的示例部分。
例子
>>> from numpy.polynomial.hermite import hermder
>>> hermder([ 1. , 0.5, 0.5, 0.5])
array([ 1., 2., 3.])
>>> hermder([-0.5, 1./2., 1./8., 1./12., 1./16.], m=2)
array([ 1., 2., 3.])