📜  Python| Numpy np.herm2poly 方法

📅  最后修改于: 2022-05-13 01:55:17.768000             🧑  作者: Mango

Python| Numpy np.herm2poly 方法

借助np.herm2poly()方法,我们可以使用np.herm2poly()方法从 Hermite 级数中得到多项式。

示例 #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)

输出 :

示例 #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)

输出 :