https://github.com/cran/pracma
Raw File
Tip revision: 392ae21a013fb3f518e8f9eb8efb458a55a2eca2 authored by HwB on 09 April 2011, 00:00:00 UTC
version 0.3-0
Tip revision: 392ae21
polyint.Rd
\name{polyint}
\alias{polyint}
\title{Anti-derivative of Polynomial}
\description{
  Integrate polynomials.
}
\usage{
  polyint(p, k)
}
\arguments{
  \item{p}{polynomial \code{p} given as a vector}
  \item{k}{an integration constant}
}
\details{
  Calculates the integral, i.e. the antiderivative, of a polynomial
  and adds a constant of integration \code{k} if given, else 0.
}
\value{
  a vector representing a polynomial
}
\seealso{
  \code{\link{polyval}}, \code{\link{polyder}}
}
\examples{
  polyint(c(1, 1, 1, 1, 1), 1)
}
\keyword{ math }
back to top