numpy.polynomial.laguerre.lagtrim#

polynomial.laguerre.lagtrim(c, tol=0)[source]#

从多项式中移除“小”的“尾部”系数。

“小”表示“绝对值小”,由参数 tol 控制;“尾部”表示最高阶系数,例如,在 [0, 1, 1, 0, 0](表示 0 + x + x**2 + 0*x**3 + 0*x**4)中,第 3 阶和第 4 阶系数都将被“修剪”。

参数:
carray_like

系数的 1 维数组,按从低阶到高阶的顺序排列。

tolnumber, 可选

绝对值小于或等于 tol(默认值为零)的尾部(即最高阶)元素将被移除。

返回值:
trimmedndarray

移除了尾部零的 1 维数组。如果结果级数为空,则返回包含单个零的级数。

引发:
ValueError

如果 tol < 0

示例

>>> from numpy.polynomial import polyutils as pu
>>> pu.trimcoef((0,0,3,0,5,0,0))
array([0.,  0.,  3.,  0.,  5.])
>>> pu.trimcoef((0,0,1e-3,0,1e-5,0,0),1e-3) # item == tol is trimmed
array([0.])
>>> i = complex(0,1) # works for complex
>>> pu.trimcoef((3e-4,1e-3*(1-i),5e-4,2e-5*(1+i)), 1e-3)
array([0.0003+0.j   , 0.001 -0.001j])