https://github.com/cran/pracma
Raw File
Tip revision: c79a04b5074656b36e591191eb8137b70a349932 authored by Hans W. Borchers on 30 June 2014, 00:00:00 UTC
version 1.7.0
Tip revision: c79a04b
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