numpy.polynomial.hermite_e.herme2poly#
- polynomial.hermite_e.herme2poly(c)[源代码]#
将埃尔米特级数转换为多项式。
将表示埃尔米特级数系数的数组(从最低阶到最高阶排序)转换为等效多项式的系数数组(相对于“标准”基),并从最低阶到最高阶排序。
- 参数:
- carray_like
包含埃尔米特级数系数的一维数组,从最低阶项到最高阶项排序。
- 返回:
- polndarray
包含等效多项式系数的一维数组(相对于“标准”基),从最低阶项到最高阶项排序。
参见
注释
在多项式基集之间进行转换的简单方法是使用类实例的 convert 方法。
示例
>>> from numpy.polynomial.hermite_e import herme2poly >>> herme2poly([ 2., 10., 2., 3.]) array([0., 1., 2., 3.])