Revision 04bbc417cf2927b827660bc07743429783569aec authored by HwB on 10 February 2013, 00:00:00 UTC, committed by Gabor Csardi on 10 February 2013, 00:00:00 UTC
1 parent 0e3ae6b
Raw File
polyval.Rd
\name{polyval}
\alias{polyval}
\title{Evaluating a Polynomial}
\description{
  Evaluate polynomial given as a numeric vector.
}
\usage{
  polyval(p, x)
}
\arguments{
  \item{p}{vector representing a polynomial}
  \item{x}{vector of values where to evaluate the polynomial}
}
\details{
  Evaluate the polynomial given by \code{p} at the values specified
  by the elements of \code{x}. If \code{x} is a matrix, the polynomial
  will be evaluated at each element and a matrix returned.
}
\value{
  vector of values
}
\seealso{
  \code{\link{poly}}, \code{\link{roots}}
}
\examples{
  # Evaluate 3 x^2 + 2 x + 1 at x = 5, 7, and 9
  p = c(3, 2, 1);
  polyval(p, c(5, 7, 9))  # 86  162  262
}
\keyword{ math }
back to top