📜  Python| Numpy np.hermefromroots() 方法

📅  最后修改于: 2022-05-13 01:55:24.081000             🧑  作者: Mango

Python| Numpy np.hermefromroots() 方法

np.hermefromroots()方法的帮助下,我们可以使用np.hermefromroots()方法从给定的根中获取 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)

输出 :

示例 #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)

输出 :