numpy.polynomial.hermite_e.herme2poly#

polynomial.hermite_e.herme2poly(c)[源代码]#

将埃尔米特级数转换为多项式。

将表示埃尔米特级数系数(从最低次到最高次排列)的数组,转换为等价多项式(相对于“标准”基)的系数数组(从最低次到最高次排列)。

参数:
carray_like

一维数组,包含埃尔米特级数系数,从最低阶项到最高阶项排列。

返回:
polndarray

一维数组,包含等价多项式(相对于“标准”基)的系数,从最低阶项到最高阶项排列。

另请参阅

poly2herme

注意

在多项式基集之间进行转换的简单方法是使用类实例的 convert 方法。

示例

>>> from numpy.polynomial.hermite_e import herme2poly
>>> herme2poly([  2.,  10.,   2.,   3.])
array([0.,  1.,  2.,  3.])