本文简要介绍 python 语言中 numpy.polynomial.hermite.hermroots
的用法。
用法:
polynomial.hermite.hermroots(c)
计算 Hermite 级数的根。
返回多项式的根 (a.k.a. “zeros”)
- c: 一维 数组
一维系数数组。
- out: ndarray
系列的根数组。如果所有的根都是实数,那么 out 也是实数,否则就是复数。
参数:
返回:
注意:
根估计是作为伴生矩阵的特征值获得的,由于这些值的序列的数值不稳定性,远离复平面原点的根可能有很大的误差。重数大于 1 的根也将显示较大的误差,因为这些点附近的序列值对根中的误差相对不敏感。可以通过牛顿方法的几次迭代来改进原点附近的孤立根。
Hermite 级数基础多项式不是 x 的幂,因此该函数的结果可能看起来不直观。
例子:
>>> from numpy.polynomial.hermite import hermroots, hermfromroots >>> coef = hermfromroots([-1, 0, 1]) >>> coef array([0. , 0.25 , 0. , 0.125]) >>> hermroots(coef) array([-1.00000000e+00, -1.38777878e-17, 1.00000000e+00])
相关用法
- Python numpy hermite.hermfromroots用法及代码示例
- Python numpy hermite.hermline用法及代码示例
- Python numpy hermite.hermpow用法及代码示例
- Python numpy hermite.hermx用法及代码示例
- Python numpy hermite.hermmul用法及代码示例
- Python numpy hermite.herm2poly用法及代码示例
- Python numpy hermite.hermsub用法及代码示例
- Python numpy hermite.hermdiv用法及代码示例
- Python numpy hermite.hermdomain用法及代码示例
- Python numpy hermite.hermadd用法及代码示例
- Python numpy hermite.hermfit用法及代码示例
- Python numpy hermite.hermint用法及代码示例
- Python numpy hermite.hermzero用法及代码示例
- Python numpy hermite.hermone用法及代码示例
- Python numpy hermite.hermtrim用法及代码示例
- Python numpy hermite.hermder用法及代码示例
- Python numpy hermite.hermvander用法及代码示例
- Python numpy hermite.hermval用法及代码示例
- Python numpy hermite.hermmulx用法及代码示例
- Python numpy hermite.poly2herm用法及代码示例
- Python numpy hermite_e.hermediv用法及代码示例
- Python numpy hermite_e.hermefromroots用法及代码示例
- Python numpy hermite_e.hermeline用法及代码示例
- Python numpy hermite_e.hermeint用法及代码示例
- Python numpy hermite_e.hermeadd用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.polynomial.hermite.hermroots。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。