Python Numpy np.herm2poly方法
在np.herm2poly()方法的帮助下,我们可以通过使用np.herm2poly()方法从蛭子系列中得到多项式。
语法: np.herm2poly(hermite series)
返回:返回多项式的系数。
例子#1 :
在这个例子中,我们可以看到,通过使用np.herm2poly()方法,我们能够用这个方法从hermite数列中得到多项式的系数。
# import numpy and herm2poly
import numpy as np
from numpy.polynomial.hermite import herm2poly
x = np.array([0.1, 0.2, 0.3, 0.4, 0.5])
# using np.herm2poly() method
gfg = herm2poly(x)
print(gfg)
输出 :
[5.5 -4.4 -22.8 3.2 8.]
例子#2 :
# import numpy and herm2poly
import numpy as np
from numpy.polynomial.hermite import herm2poly
x = np.array([-0.5, -0.4, -0.3, -0.2, -0.1, 0, 0.1, 0.2, 0.3, 0.4, 0.5])
# using np.herm2poly() method
gfg = herm2poly(x)
print(gfg)
输出 :
[-14629.1 11761.6 147243.6 -31585.6 -197617.6 19084.8 79571.2
-3660.8 -11443.2 204.8 512.]