Python Numpy np.hermder()方法
在np.hermder()方法的帮助下,我们可以通过使用np.hermder()方法对蛭石系列进行微分。
语法: np.hermder(series, m)
返回:返回微分序列的系数。
例子#1 :
在这个例子中,我们可以看到,通过使用np.hermder()方法,我们能够得到hermite系列的微分系数。
# import numpy and harmder
import numpy as np
from numpy.polynomial.hermite import hermder
series = np.array([2, 0.3, 4, 0.5, 6])
# using np.harmder() method
gfg = hermder(series, m = 1)
print(gfg)
输出 :
[0.6 16. 3. 48.]
例子#2 :
# import numpy and harmder
import numpy as np
from numpy.polynomial.hermite import hermder
series = np.array([1, 2, 3, 4, 5])
# using np.harmder() method
gfg = hermder(series, m = 2)
print(gfg)
输出 :
[24. 96. 240.]