The R Project SVN R

Rev

Rev 61168 | Rev 67599 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 61168 Rev 61975
Line 1... Line 1...
1
% File src/library/base/man/Bessel.Rd
1
% File src/library/base/man/Bessel.Rd
2
% Part of the R package, http://www.R-project.org
2
% Part of the R package, http://www.R-project.org
3
% Copyright 1995-2011 R Core Team
3
% Copyright 1995-2013 R Core Team
4
% Distributed under GPL 2 or later
4
% Distributed under GPL 2 or later
5
 
5
 
6
\name{Bessel}
6
\name{Bessel}
7
\title{Bessel Functions}
7
\title{Bessel Functions}
8
\alias{bessel}
8
\alias{bessel}
Line 33... Line 33...
33
    exponentially scaled in order to avoid overflow
33
    exponentially scaled in order to avoid overflow
34
    (\eqn{I_{\nu}}{I(nu)}) or underflow (\eqn{K_{\nu}}{K(nu)}),
34
    (\eqn{I_{\nu}}{I(nu)}) or underflow (\eqn{K_{\nu}}{K(nu)}),
35
    respectively.}
35
    respectively.}
36
}
36
}
37
\value{
37
\value{
38
  Numeric vector of the same length of \code{x} with the (scaled, if
38
  Numeric vector with the (scaled, if \code{expon.scaled = TRUE})
39
  \code{expon.scaled = TRUE}) values of the corresponding Bessel function.
39
  values of the corresponding Bessel function.
-
 
40
  
-
 
41
  The length of the result is the maximum of the lengths of the
-
 
42
  parameters.  All parameters are recycled to that length.
40
}
43
}
41
\details{
44
\details{
42
  If \code{expon.scaled = TRUE}, \eqn{e^{-x} I_{\nu}(x)}{exp(-x) I(x;nu)},
45
  If \code{expon.scaled = TRUE}, \eqn{e^{-x} I_{\nu}(x)}{exp(-x) I(x;nu)},
43
  or \eqn{e^{x} K_{\nu}(x)}{exp(x) K(x;nu)} are returned.
46
  or \eqn{e^{x} K_{\nu}(x)}{exp(x) K(x;nu)} are returned.
44
 
47