Python Numpy np.poly2herme()方法
在np.poly2herme()方法的帮助下,我们可以通过使用np.poly2herme()方法从多项式中得到hermiteE系列。
语法: np.poly2herme(series)
返回:返回 hermiteE 系列的系数。
例子#1 :
在这个例子中,我们可以看到,通过使用np.poly2herme()方法,我们能够用这个方法从多项式中得到hermiteE系列的系数。
# import numpy and poly2herme
import numpy as np
from numpy.polynomial.hermite_e import poly2herme
x = np.array([0.1, 0.2, 0.3, 0.4])
# using np.poly2herme() method
gfg = poly2herme(x)
print(gfg)
输出 :
[0.4 1.4 0.3 0.4]
例子#2 :
# import numpy and poly2herme
import numpy as np
from numpy.polynomial.hermite_e import poly2herme
x = np.array([-0.5, -0.4, -0.3, -0.2, -0.1, 0, 0.4, 0.5])
# using np.poly2herme() method
gfg = poly2herme(x)
print(gfg)
输出 :
[ 4.9 51.5 17.1 52.3 5.9 10.5 0.4 0.5]