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
|
\name{I.p}
\title{P-th Order Bessel Function of the First Kind}
\alias{I.p}
\description{
An alias of \code{besselI(x, nu=p)}.
}
\usage{
I.p(p, x)
}
\arguments{
\item{p}{positive integer order of the Bessel function.}
\item{x}{non-negative numerical value at which to evaluate the Bessel function.}
}
\value{
Returns the p-th order Bessel function of the first kind, evaluated at a specified real number.
}
\seealso{
\code{\link{besselI}}.
}
\keyword{math}
|