Python Numpy np.hermeroots()方法
在np.hermeroots()方法的帮助下,我们可以通过np.hermeroots()方法得到hermiteE系列的根。
语法: np.hermeroots(series)
返回:返回 hermiteE 系列的根。
例子#1 :
在这个例子中,我们可以看到,通过使用np.hermeroots()方法,我们能够从hermiteE数列中得到根,通过使用这个方法。
# import numpy and hermeroots
import numpy as np
from numpy.polynomial.hermite_e import hermeroots
series = np.array([1, 2, 3, 4, 5])
# using np.hermeroots() method
gfg = hermeroots(series)
print(gfg)
输出 :
[-2.48126206 -0.91457252 0.56384744 2.03198714]
例子#2 :
# import numpy and hermeroots
import numpy as np
from numpy.polynomial.hermite_e import hermeroots
series = np.array([1, 0, 0, 1, 1, 0])
# using np.hermeroots() method
gfg = hermeroots(series)
print(gfg)
输出 :
[-2.62826298 -1.12025529 0.6462188 2.10229947]