本文简要介绍 python 语言中 numpy.polynomial.polynomial.polyfromroots
的用法。
用法:
polynomial.polynomial.polyfromroots(roots)
生成具有给定根的一元多项式。
返回多项式的系数
其中
r_n
是roots
中指定的根。如果零具有多重性 n,那么它必须在roots
中出现 n 次。例如,如果 2 是多重性 3 的根,而 3 是多重性 2 的根,则roots
看起来类似于 [2, 2, 2, 3, 3]。根可以按任何顺序出现。如果返回的系数是 c,那么
对于这种形式的一元多项式,最后一项的系数为 1。
- roots: array_like
包含根的序列。
- out: ndarray
多项式系数的一维数组如果所有根都是实数,则 out 也是实数,否则是复数。 (见下面的例子)。
参数:
返回:
注意:
系数是通过将
(x - r_i)
形式的线性因子相乘来确定的,即其中
n == len(roots) - 1
;请注意,这意味着始终为 返回1
。例子:
>>> from numpy.polynomial import polynomial as P >>> P.polyfromroots((-1,0,1)) # x(x - 1)(x + 1) = x^3 - x array([ 0., -1., 0., 1.]) >>> j = complex(0,1) >>> P.polyfromroots((-j,j)) # complex returned, though values are real array([1.+0.j, 0.+0.j, 1.+0.j])
相关用法
- Python numpy polynomial.polyfit用法及代码示例
- Python numpy polynomial.polyline用法及代码示例
- Python numpy polynomial.polyadd用法及代码示例
- Python numpy polynomial.polyder用法及代码示例
- Python numpy polynomial.polydomain用法及代码示例
- Python numpy polynomial.polyint用法及代码示例
- Python numpy polynomial.polydiv用法及代码示例
- Python numpy polynomial.polyvalfromroots用法及代码示例
- Python numpy polynomial.polyval用法及代码示例
- Python numpy polynomial.polysub用法及代码示例
- Python numpy polynomial.polyx用法及代码示例
- Python numpy polynomial.polytrim用法及代码示例
- Python numpy polynomial.polyroots用法及代码示例
- Python numpy polynomial.polymul用法及代码示例
- Python numpy polynomial.polyzero用法及代码示例
- Python numpy polynomial.polyone用法及代码示例
- Python numpy polynomial.polypow用法及代码示例
- Python numpy polynomial.set_default_printstyle用法及代码示例
- Python numpy polyder用法及代码示例
- Python numpy polyfit用法及代码示例
- Python numpy polyutils.as_series用法及代码示例
- Python numpy poly用法及代码示例
- Python numpy polysub用法及代码示例
- Python numpy polyutils.getdomain用法及代码示例
- Python numpy polyutils.mapdomain用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.polynomial.polynomial.polyfromroots。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。