當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Numpy np.herme2poly()用法及代碼示例


借助np.herme2poly()方法,我們可以通過使用從hermiteE係列獲得多項式np.herme2poly()方法。

用法: np.herme2poly(series)
返回:Return the coefficients of polynomial.

範例1:
在這個例子中,我們可以通過使用np.herme2poly()方法,我們可以使用此方法從hermiteE係列中獲得多項式係數。


# import numpy and herme2poly 
import numpy as np 
from numpy.polynomial.hermite_e import herme2poly 
   
x = np.array([0.1, 0.2, 0.3, 0.4, 0.5]) 
# using np.herme2poly() method 
gfg = herme2poly(x) 
   
print(gfg)

輸出:

[1.3 -1. -2.7 0.4 0.5]

範例2:

# import numpy and herme2poly 
import numpy as np 
from numpy.polynomial.hermite_e import herme2poly 
   
x = np.array([-0.5, -0.4, -0.3, -0.2, -0.1, 0, 0.1, 0.2, 0.3, 0.4, 0.5]) 
# using np.herme2poly() method 
gfg = herme2poly(x) 
   
print(gfg)

輸出:

[-4.4300e+02 3.5720e+02 2.2413e+03 -4.8320e+02 -1.5136e+03 1.4700e+02
3.0670e+02 -1.4200e+01 -2.2200e+01 4.0000e-01 5.0000e-01]



相關用法


注:本文由純淨天空篩選整理自Jitender_1998大神的英文原創作品 Python | Numpy np.herme2poly() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。