Python| Numpy np.herm2poly 方法
借助np.herm2poly()
方法,我们可以使用np.herm2poly()
方法从 Hermite 级数中得到多项式。
Syntax : np.herm2poly(hermite series)
Return : Return the coefficient of polynomial.
示例 #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.]