📜  Python| Numpy np.hermetrim() 方法

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

Python| Numpy np.hermetrim() 方法

np.hermetrim()方法的帮助下,我们可以使用np.hermtrim()方法修剪一系列 hermiteE 系数中的尾随值。

示例 #1:
在这个例子中我们可以看到,通过使用np.hermetrim()方法,我们可以通过使用这个方法得到修剪后的 hermiteE 系列。

# import numpy and herm1trim
import numpy as np
from numpy.polynomial.hermite_e import hermetrim
   
series = np.array([2, 0, 4, 0, 6, 1, 1, 1])
   
# using np.hermetrim() method
gfg = hermetrim(series, tol = 1)
   
print(gfg)

输出 :

示例 #2:

# import numpy and hermetrim
import numpy as np
from numpy.polynomial.hermite_e import hermetrim
   
series = np.array([1, 0, 0, 0, 0, 0])
   
# using np.hermetrim() method
gfg = hermetrim(series, tol = 0)
   
print(gfg)

输出 :