1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
\name{deriv.polynomial}
\alias{deriv.polynomial}
\title{Differentiate a Polynomial}
\description{
Calculates the derivative of a univariate polynomial.
}
\usage{
\method{deriv}{polynomial}(expr, \dots)
}
\arguments{
\item{expr}{an object of class \code{"polynomial"}.}
\item{\dots}{further arguments to be passed to or from methods.}
}
\details{
This is a method for the generic function \code{\link{deriv}}.
}
\value{
Derivative of the polynomial.
}
\seealso{
\code{\link{integral.polynomial}},
\code{\link{deriv}}.
}
\examples{
pr <- poly.calc(1:5)
pr
## -120 + 274*x - 225*x^2 + 85*x^3 - 15*x^4 + x^5
deriv(pr)
## 274 - 450*x + 255*x^2 - 60*x^3 + 5*x^4
}
\keyword{symbolmath}
|