Python Numpy np.hermefromroots()方法
在np.hermefromroots()方法的帮助下,我们可以通过使用np.hermefromroots()方法从给定的根得到hermiteE系列。
语法: np.hermefromroots(roots)
返回:返回hermiteE系列。
例子#1 :
在这个例子中,我们可以看到,通过使用np.hermefromroots()方法,我们能够从给定的根中得到hermiteE系列。
# import numpy and hermefromroots
import numpy as np
from numpy.polynomial.hermite_e import hermefromroots
series = np.array([0.1, 0.2, 0.3, 0.4, 0.5])
# using np.hermefromroots() method
gfg = hermefromroots(series)
print(gfg)
输出 :
[-4.7262 17.5774 -9.225 10.85 -1.5 1.]
例子#2 :
# import numpy and hermefromroots
import numpy as np
from numpy.polynomial.hermite_e import hermefromroots
series = np.array([1, 0, 0, 1, 1, 0])
# using np.hermefromroots() method
gfg = hermefromroots(series)
print(gfg)
输出 :
[24. -48. 63. -31. 18. -3. 1.]