https://github.com/cran/pracma
Raw File
Tip revision: 708a2ad382a163d1eef5af0665e3ae2aad200ced authored by HwB on 21 March 2013, 00:00:00 UTC
version 1.4.5
Tip revision: 708a2ad
roots.Rd
\name{roots}
\alias{roots}
\title{Polynomial Roots}
\description{
  Computes the roots of the polynomial \code{p}.
}
\usage{
  roots(p)
}
\arguments{
  \item{p}{vector of real numbers representing the polynomial}
}
\details{
  For solution the function computes the eigenvalues of the companion matrix.

  At the moment, only real coefficients are allowed.
}
\value{
  a vector holding the roots of the polynomial
}
\seealso{
  \code{\link{polyroot}}
}
\examples{
  roots(c(1, 0, 1, 0, 0))       # 0 0 1i -1i
  p <- Poly(c(-2, -1, 0, 1, 2))
  roots(p)
}
\keyword{ math }
back to top