本文简要介绍 python 语言中 numpy.polynomial.laguerre.lagroots
的用法。
用法:
polynomial.laguerre.lagroots(c)
计算拉盖尔级数的根。
返回多项式的根 (a.k.a. “zeros”)
- c: 一维 数组
一维系数数组。
- out: ndarray
系列的根数组。如果所有的根都是实数,那么 out 也是实数,否则就是复数。
参数:
返回:
注意:
根估计是作为伴生矩阵的特征值获得的,由于这些值的序列的数值不稳定性,远离复平面原点的根可能有很大的误差。重数大于 1 的根也将显示较大的误差,因为这些点附近的序列值对根中的误差相对不敏感。可以通过牛顿方法的几次迭代来改进原点附近的孤立根。
拉盖尔级数基础多项式不是 x 的幂,因此该函数的结果可能看起来不直观。
例子:
>>> from numpy.polynomial.laguerre import lagroots, lagfromroots >>> coef = lagfromroots([0, 1, 2]) >>> coef array([ 2., -8., 12., -6.]) >>> lagroots(coef) array([-4.4408921e-16, 1.0000000e+00, 2.0000000e+00])
相关用法
- Python numpy laguerre.lagone用法及代码示例
- Python numpy laguerre.lagdomain用法及代码示例
- Python numpy laguerre.lagzero用法及代码示例
- Python numpy laguerre.lagdiv用法及代码示例
- Python numpy laguerre.lagx用法及代码示例
- Python numpy laguerre.lagval用法及代码示例
- Python numpy laguerre.lagvander用法及代码示例
- Python numpy laguerre.lagfromroots用法及代码示例
- Python numpy laguerre.lagmul用法及代码示例
- Python numpy laguerre.lagpow用法及代码示例
- Python numpy laguerre.lag2poly用法及代码示例
- Python numpy laguerre.lagder用法及代码示例
- Python numpy laguerre.lagsub用法及代码示例
- Python numpy laguerre.lagadd用法及代码示例
- Python numpy laguerre.lagtrim用法及代码示例
- Python numpy laguerre.lagmulx用法及代码示例
- Python numpy laguerre.lagline用法及代码示例
- Python numpy laguerre.lagfit用法及代码示例
- Python numpy laguerre.lagint用法及代码示例
- Python numpy laguerre.poly2lag用法及代码示例
- Python numpy legendre.legint用法及代码示例
- Python numpy linalg.svd用法及代码示例
- Python numpy linalg.pinv用法及代码示例
- Python numpy logaddexp用法及代码示例
- Python numpy linalg.eigh用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.polynomial.laguerre.lagroots。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。