本文简要介绍 python 语言中 numpy.polynomial.hermite_e.hermeroots
的用法。
用法:
polynomial.hermite_e.hermeroots(c)
计算 HermiteE 系列的根。
返回多项式的根 (a.k.a. “zeros”)
- c: 一维 数组
一维系数数组。
- out: ndarray
系列的根数组。如果所有的根都是实数,那么 out 也是实数,否则就是复数。
参数:
返回:
注意:
根估计是作为伴生矩阵的特征值获得的,由于这些值的序列的数值不稳定性,远离复平面原点的根可能有很大的误差。重数大于 1 的根也将显示较大的误差,因为这些点附近的序列值对根中的误差相对不敏感。可以通过牛顿方法的几次迭代来改进原点附近的孤立根。
HermiteE 系列基多项式不是 x 的幂,因此该函数的结果可能看起来不直观。
例子:
>>> from numpy.polynomial.hermite_e import hermeroots, hermefromroots >>> coef = hermefromroots([-1, 0, 1]) >>> coef array([0., 2., 0., 1.]) >>> hermeroots(coef) array([-1., 0., 1.]) # may vary
相关用法
- 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用法及代码示例
- Python numpy hermite_e.hermevander用法及代码示例
- Python numpy hermite_e.hermepow用法及代码示例
- Python numpy hermite_e.hermetrim用法及代码示例
- Python numpy hermite_e.hermezero用法及代码示例
- Python numpy hermite_e.hermex用法及代码示例
- Python numpy hermite_e.hermemulx用法及代码示例
- Python numpy hermite_e.hermeone用法及代码示例
- Python numpy hermite_e.hermeval用法及代码示例
- Python numpy hermite_e.hermesub用法及代码示例
- Python numpy hermite_e.hermefit用法及代码示例
- Python numpy hermite_e.hermedomain用法及代码示例
- Python numpy hermite_e.herme2poly用法及代码示例
- Python numpy hermite_e.hermeder用法及代码示例
- Python numpy hermite_e.hermemul用法及代码示例
- Python numpy hermite_e.poly2herme用法及代码示例
- Python numpy hermite.hermfromroots用法及代码示例
- Python numpy hermite.hermline用法及代码示例
- Python numpy hermite.hermpow用法及代码示例
- Python numpy hermite.hermx用法及代码示例
- Python numpy hermite.hermmul用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.polynomial.hermite_e.hermeroots。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。