Python| Numpy np.hermeroots() 方法
在np.hermeroots()
方法的帮助下,我们可以使用np.hermeroots()
方法获取 hermiteE 系列的根。
Syntax : np.hermeroots(series)
Return : Return the roots of hermiteE series.
示例 #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]