Python Numpy np.hermeint()方法
在np.hermeint()方法的帮助下,我们可以通过使用np.hermeint()方法对hermiteE系列进行积分。
语法: np.hermeint(series, m)
返回:返回综合序列的系数。
例子#1 :
在这个例子中,我们可以看到,通过使用np.hermeint()方法,我们能够得到hermiteE系列的积分系数。
# import numpy and harmeint
import numpy as np
from numpy.polynomial.hermite_e import hermeint
series = np.array([2, 0.3, 4, 0.5, 6])
# using np.harmeint() method
gfg = hermeint(series, m = 2)
print(gfg)
输出 :
[3. -0.225 1. 0.05 0.33333333 0.025 0.2]
例子#2 :
# import numpy and harmeint
import numpy as np
from numpy.polynomial.hermite_e import hermeint
series = np.array([1, 2, 3, 4, 5])
# using np.harmeint() method
gfg = hermeint(series, m = 3)
print(gfg)
输出 :
[-0.75 2.25 -1. 0.16666667 0.08333333 0.05 0.03333333 0.02380952]