numpy.polynomial.laguerre.lagroots

原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.polynomial.laguerre.lagroots.html

译者:飞龙 UsyiyiCN

校对:(虚位以待)

numpy.polynomial.laguerre.lagroots(c)[source]

计算Laguerre系列的根。

返回根(a.k.a.“zeros”)

参数:

c:1-D array_like

1-D数组的系数。

返回:

out:ndarray

数组的根系。如果所有的根是真实的,那么out也是真实的,否则它是复杂的。

也可以看看

polyrootslegrootschebrootshermrootshermeroots

笔记

根估计被获得作为伴随矩阵的特征值。远离复平面的原点的根可能由于这样的值的序列的数值不稳定性而可能具有大的误差。具有大于1的根的根也将显示较大的误差,因为在这些点附近的系列的值对根中的误差相对不敏感。通过牛顿法的几次迭代可以改善接近原点的分离的根。

Laguerre系列基础多项式不是x的幂,因此此函数的结果可能看起来不直观。

例子

>>> from numpy.polynomial.laguerre import lagroots, lagfromroots
>>> coef = lagfromroots([0, 1, 2])
>>> coef
array([  2.,  -8.,  12.,  -6.])
>>> lagroots(coef)
array([ -4.44089210e-16,   1.00000000e+00,   2.00000000e+00])