📜  Python| Numpy np.hermint() 方法

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

Python| Numpy np.hermint() 方法

借助np.hermint()方法,我们可以使用np.hermint()方法整合 Hermite 系列。

示例 #1:
在这个例子中我们可以看到,通过使用np.hermint()方法,我们可以通过这个方法得到 Hermite 级数的积分级数系数。

# import numpy and harmint
import numpy as np
from numpy.polynomial.hermite import hermint
  
series = np.array([2, 0.3, 4, 0.5, 6])
# using np.harmint() method
gfg = hermint(series, m = 1)
  
print(gfg)

输出 :

示例 #2:

# import numpy and harmint
import numpy as np
from numpy.polynomial.hermite import hermint
  
series = np.array([1, 2, 3, 4, 5])
# using np.harmint() method
gfg = hermint(series, m = 2)
  
print(gfg)

输出 :