Python| Numpy np.hermtrim() 方法
借助np.hermtrim()
方法,我们可以使用np.hermtrim()
方法修剪一系列 Hermite 系数中的尾随值。
Syntax : np.hermtrim(series, tol)
Return : Return the coefficients of series after trimming.
示例 #1:
在这个例子中我们可以看到,通过使用np.hermtrim()
方法,我们可以使用这个方法得到修剪后的 Hermite 系列。
# import numpy and hermtrim
import numpy as np
from numpy.polynomial.hermite import hermtrim
series = np.array([2, 0, 4, 0, 6, 1, 1, 1])
# using np.hermtrim() method
gfg = hermtrim(series, tol = 1)
print(gfg)
输出 :
[2. 0. 4. 0. 6.]
示例 #2:
# import numpy and hermtrim
import numpy as np
from numpy.polynomial.hermite import hermtrim
series = np.array([1, 0, 0, 0, 0, 0])
# using np.hermtrim() method
gfg = hermtrim(series, tol = 0)
print(gfg)
输出 :
[1.]