numpy.polynomial.hermite_e.hermeder

原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.polynomial.hermite_e.hermeder.html

译者:飞龙 UsyiyiCN

校对:(虚位以待)

numpy.polynomial.hermite_e.hermeder(c, m=1, scl=1, axis=0)[source]

区分Hermite_e系列。

返回沿的系列系数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*He_0 + 2*He_1 + 3*He_2 while [[1,2],[1,2]] represents 1*He_0(x)*He_0(y) + 1*He_1(x)*He_0(y) + 2*He_0(x)*He_1(y) + 2*He_1(x)*He_1(y) if axis=0 is x and axis=1 is y.

参数:

c:array_like

Hermite_e系数数组。如果c是多维的,则不同的轴对应于不同的变量,每个轴中的度由相应的索引给出。

m:int,可选

所采用的导数数量,必须是非负数。(默认值:1)

scl:标量,可选

每个微分乘以scl最终结果是乘以scl**m。这是用于变量的线性变化。(默认值:1)

axis:int,可选

采用导数的轴。(默认值:0)。

版本1.7.0中的新功能。

返回:

der:ndarray

Hermite系列的衍生物。

也可以看看

hermeint

笔记

一般来说,区分Hermite系列的结果与功率系列上的相同操作不相似。因此,这个函数的结果可能是“不直观的”,虽然正确;请参阅下面的示例部分。

例子

>>> from numpy.polynomial.hermite_e import hermeder
>>> hermeder([ 1.,  1.,  1.,  1.])
array([ 1.,  2.,  3.])
>>> hermeder([-0.25,  1.,  1./2.,  1./3.,  1./4 ], m=2)
array([ 1.,  2.,  3.])