https://github.com/cran/pracma
Raw File
Tip revision: 63e8a52ae6668e736720c89691352d6dc3bc9eb1 authored by HwB on 17 January 2012, 00:00:00 UTC
version 0.9.6
Tip revision: 63e8a52
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