| roots {pracma} | R Documentation |
Computes the roots of the polynomial p.
roots(p)
p |
vector of real numbers representing the polynomial |
For solution the function computes the eigenvalues of the companion matrix.
At the moment, only real coefficients are allowed.
a vector holding the roots of the polynomial
roots(c(1, 0, 1, 0, 0)) # 0 0 1i -1i p <- Poly(c(-2, -1, 0, 1, 2)) roots(p)