Python Numpy np.hermefromroots()方法

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.]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程