CCATSL provides routines for evaluating three standard mathematical
functions, BesselCL for Bessel functions of the first
kind of integer order, PhiCL for the
normal distribution function and
InvPhiCL for its inverse.
BesselCL
BesselCL computes the Bessel function of the first kind,
for
a positive integer, which may be defined by
| double BesselCL ( |
int n, |
| double x); |
|
| n |
Specifies the order |
|
| x |
Specifies the argument to |
The return value is an accurate approximation to
.
PhiCL
PhiCL
computes the normal distribution function, defined by
| double PhiCL ( |
double x); |
| x |
Specifies the argument to |
The return value is an accurate approximation to
.
InvPhiCL
InvPhiCL computes
, the inverse function to
,
the normal distribution function.
| double InvPhiCL ( |
double x); |
| x |
Specifies the argument to |
The return value is an accurate approximation to
.