Python Numpy np.hermeroots()方法

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]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程