https://github.com/cran/pracma
Raw File
Tip revision: 7c9cb68ab5f2055c3ac5af364c5c2febceae395b authored by Hans W. Borchers on 03 April 2017, 19:40:41 UTC
version 2.0.4
Tip revision: 7c9cb68
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