本文简要介绍 python 语言中 numpy.polynomial.chebyshev.chebroots
的用法。
用法:
polynomial.chebyshev.chebroots(c)
计算切比雪夫级数的根。
返回多项式的根 (a.k.a. “zeros”)
- c: 一维 数组
一维系数数组。
- out: ndarray
系列的根数组。如果所有的根都是实数,那么 out 也是实数,否则就是复数。
参数:
返回:
注意:
根估计是作为伴生矩阵的特征值获得的,由于这些值的序列的数值不稳定性,远离复平面原点的根可能有很大的误差。重数大于 1 的根也将显示较大的误差,因为这些点附近的序列值对根中的误差相对不敏感。可以通过牛顿方法的几次迭代来改进原点附近的孤立根。
Chebyshev 级数基多项式不是 x 的幂,因此该函数的结果可能看起来不直观。
例子:
>>> import numpy.polynomial.chebyshev as cheb >>> cheb.chebroots((-1, 1,-1, 1)) # T3 - T2 + T1 - T0 has real roots array([ -5.00000000e-01, 2.60860684e-17, 1.00000000e+00]) # may vary
相关用法
- Python numpy chebyshev.chebsub用法及代码示例
- Python numpy chebyshev.chebdiv用法及代码示例
- Python numpy chebyshev.cheb2poly用法及代码示例
- Python numpy chebyshev.chebx用法及代码示例
- Python numpy chebyshev.chebmul用法及代码示例
- Python numpy chebyshev.chebtrim用法及代码示例
- Python numpy chebyshev.chebone用法及代码示例
- Python numpy chebyshev.chebder用法及代码示例
- Python numpy chebyshev.chebint用法及代码示例
- Python numpy chebyshev.chebadd用法及代码示例
- Python numpy chebyshev.chebdomain用法及代码示例
- Python numpy chebyshev.chebline用法及代码示例
- Python numpy chebyshev.chebfromroots用法及代码示例
- Python numpy chebyshev.chebfit用法及代码示例
- Python numpy chebyshev.chebzero用法及代码示例
- Python numpy chebyshev.chebpow用法及代码示例
- Python numpy chebyshev.chebmulx用法及代码示例
- Python numpy chebyshev.chebinterpolate用法及代码示例
- Python numpy chebyshev.poly2cheb用法及代码示例
- Python numpy chararray.ndim用法及代码示例
- Python numpy chararray.nbytes用法及代码示例
- Python numpy chararray.setflags用法及代码示例
- Python numpy chararray.flat用法及代码示例
- Python numpy chararray.strides用法及代码示例
- Python numpy chararray.view用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.polynomial.chebyshev.chebroots。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。