Python| Numpy np.hermfromroots() 方法
在np.hermfromroots()
方法的帮助下,我们可以使用np.hermfromroots()
方法从给定的根中得到 Hermite 级数系数。
Syntax : np.hermfromroots(roots)
Return : Return the coefficient of hermite series.
示例 #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)
输出 :
[6.205 -6.49 3.3575 -0.8 0.0625]
示例 #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)
输出 :
[-7.4754225e+01 7.2628250e+01 -2.9500950e+01 6.2501250e+00
-6.8750625e-01 3.1250000e-02]