📜  Python| Numpy np.hermfromroots() 方法

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

Python| Numpy np.hermfromroots() 方法

np.hermfromroots()方法的帮助下,我们可以使用np.hermfromroots()方法从给定的根中得到 Hermite 级数系数。

示例 #1:
在这个例子中我们可以看到,通过使用np.hermfromroots()方法,我们可以使用这个方法从给定的根中得到 Hermite 级数的系数。

# import numpy and hermfromroot
import numpy as np
from numpy.polynomial.hermite import hermfromroots
  
roots = np.array([0.1, 2, 0.3, 4])
# using np.hermfromroots() method
gfg = hermfromroots(roots)
  
print(gfg)

输出 :

示例 #2:

# import numpy and hermfromroot
import numpy as np
from numpy.polynomial.hermite import hermfromroots
  
roots = np.array([1, 2, 3, 4, 1.0001])
# using np.hermfromroots() method
gfg = hermfromroots(roots)
  
print(gfg)

输出 :