https://github.com/cran/pracma
Raw File
Tip revision: 26e049d70b4a1c237987e260cba68f6a9413736c authored by Hans W. Borchers on 09 April 2019, 04:10:07 UTC
version 2.2.5
Tip revision: 26e049d
polypow.Rd
\name{polypow}
\alias{polypow}
\title{Polynomial Powers}
\description{
  Power of a polynomial.
}
\usage{
polypow(p, n)
}
\arguments{
  \item{p}{vector representing a polynomial.}
  \item{n}{positive integer, the exponent.}
}
\details{
  Uses \code{polymul} to multiply the polynomial \code{p} \code{n} times
  with itself.
}
\value{
  Vector representing a polynomial.
}
\note{
  There is no such function in Matlab or Octave.
}
\seealso{
  \code{\link{polymul}}
}
\examples{
polypow(c(1, -1), 6)             #=> (x - 1)^6 = (1  -6  15 -20  15  -6   1)
polypow(c(1, 1, 1, 1, 1, 1), 2)  # 1 2 3 4 5 6 5 4 3 2 1
}
\keyword{ math }
back to top