Python Numpy np.hermfromroots()方法
在np.hermfromroots()方法的帮助下,我们可以通过使用np.hermfromroots()方法从给定的根中得到蛭石级数的系数。
语法: np.hermfromroots(roots)
返回:返回赫米特级数的系数。
例子#1 :
在这个例子中,我们可以看到,通过使用np.hermfromroots()方法,我们能够从给定的根中得到赫米特级数的系数。
# 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]