当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Numpy np.hermfromroots()用法及代码示例


借助np.hermfromroots()方法,我们可以从给定的根获得hermite级数系数np.hermfromroots()方法。

用法: np.hermfromroots(roots)
返回:Return the coefficient of hermite series.

范例1:
在这个例子中,我们可以通过使用np.hermfromroots()方法,我们可以使用此方法从给定的根中获得Hermite级数的系数。


# import numpy and hermfromroot 
import numpy as np 
from numpy.polynomial.hermite import hermfromroots 
  
roots = np.array([0.1, 2, 0.3, 4]) 
# using np.hermfromroots() method 
gfg = hermfromroots(roots) 
  
print(gfg)

输出:

[6.205 -6.49 3.3575 -0.8 0.0625]

范例2:

# import numpy and hermfromroot 
import numpy as np 
from numpy.polynomial.hermite import hermfromroots 
  
roots = np.array([1, 2, 3, 4, 1.0001]) 
# using np.hermfromroots() method 
gfg = hermfromroots(roots) 
  
print(gfg)

输出:

[-7.4754225e+01 7.2628250e+01 -2.9500950e+01 6.2501250e+00
-6.8750625e-01 3.1250000e-02]



相关用法


注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 Python | Numpy np.hermfromroots() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。