poly(signal)
poly()所属R语言包:signal
Polynomial given roots
多项式已知根
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Coefficients of a polynomial when roots are given or the characteristic polynomial of a matrix.
系数的多项式给出根时,或以矩阵的特征多项式。
用法----------Usage----------
poly(x)
参数----------Arguments----------
参数:x
a vector or matrix. For a vector, it specifies the roots of the polynomial. For a matrix, the characteristic polynomial is found.
的向量或矩阵。对于一个向量,它指定的多项式的根。对于一个矩阵,被发现的特征多项式。
值----------Value----------
An array of the coefficients of the polynomial in order from highest to lowest polynomial power.
的多项式的系数的阵列,以便从最高到最低的多项式功率。
(作者)----------Author(s)----------
Original Octave version by Kurt Hornik. Conversion to R by Tom Short.
参考文献----------References----------
参见----------See Also----------
polyval, roots, conv
polyval,roots,conv
实例----------Examples----------
poly(c(1, -1))
poly(roots(1:3))
poly(matrix(1:9, 3, 3))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|