polyroot(base)
polyroot()所属R语言包:base
Find Zeros of a Real or Complex Polynomial
找到一个真正的或复杂的多项式的零点
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Find zeros of a real or complex polynomial.
找到一个真正的或复杂的多项式的零点。
用法----------Usage----------
polyroot(z)
参数----------Arguments----------
参数:z
the vector of polynomial coefficients in increasing order.
为了增加多项式系数向量。
Details
详情----------Details----------
A polynomial of degree n - 1,
一个多项式n - 1,
is given by its coefficient vector z[1:n]. polyroot returns the n-1 complex zeros of p(x) using the Jenkins-Traub algorithm.
其系数向量z[1:n]。 polyrootn-1p(x)使用的詹金斯特劳布算法的复杂零返回。
If the coefficient vector z has zeroes for the highest powers, these are discarded.
如果系数向量z零的最高权力,这些被丢弃。
There is no maximum degree, but numerical stability may be an issue for all but low-degree polynomials.
有没有最大程度,但数值稳定性可能是一个问题,但低度的多项式。
值----------Value----------
A complex vector of length n - 1, where n is the position of the largest non-zero element of z.
一个复杂的矢量长度n - 1,其中n是z最大的非零元素的位置。
参考文献----------References----------
TOMS Algorithm 419. Comm. ACM, 15, 97–99.
参见----------See Also----------
uniroot for numerical root finding of arbitrary functions; complex and the zero example in the demos directory.
uniroot任意函数的数值根发现,“complex和zero在演示目录的例子。
举例----------Examples----------
polyroot(c(1, 2, 1))
round(polyroot(choose(8, 0:8)), 11) # guess what![你知道吗!]
for (n1 in 1:4) print(polyroot(1:n1), digits = 4)
polyroot(c(1, 2, 1, 0, 0)) # same as the first[同第一]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|