NAG Library Routine Document
S18DCF
1 Purpose
S18DCF returns a sequence of values for the modified Bessel functions for complex , non-negative and , with an option for exponential scaling.
2 Specification
INTEGER |
N, NZ, IFAIL |
REAL (KIND=nag_wp) |
FNU |
COMPLEX (KIND=nag_wp) |
Z, CY(N) |
CHARACTER(1) |
SCAL |
|
3 Description
S18DCF evaluates a sequence of values for the modified Bessel function , where is complex, , and is the real, non-negative order. The -member sequence is generated for orders , . Optionally, the sequence is scaled by the factor .
The routine is derived from the routine CBESK in
Amos (1986).
Note: although the routine may not be called with less than zero, for negative orders the formula may be used.
When is greater than , extra values of are computed using recurrence relations.
For very large or , argument reduction will cause total loss of accuracy, and so no computation is performed. For slightly smaller or , the computation is performed but results are accurate to less than half of machine precision. If is very small, near the machine underflow threshold, or is too large, there is a risk of overflow and so no computation is performed. In all the above cases, a warning is given by the routine.
4 References
Abramowitz M and Stegun I A (1972) Handbook of Mathematical Functions (3rd Edition) Dover Publications
Amos D E (1986) Algorithm 644: A portable package for Bessel functions of a complex argument and non-negative order ACM Trans. Math. Software 12 265–273
5 Parameters
- 1: FNU – REAL (KIND=nag_wp)Input
On entry: , the order of the first member of the sequence of functions.
Constraint:
.
- 2: Z – COMPLEX (KIND=nag_wp)Input
On entry: the argument of the functions.
Constraint:
.
- 3: N – INTEGERInput
On entry: , the number of members required in the sequence .
Constraint:
.
- 4: SCAL – CHARACTER(1)Input
On entry: the scaling option.
- The results are returned unscaled.
- The results are returned scaled by the factor .
Constraint:
or .
- 5: CY(N) – COMPLEX (KIND=nag_wp) arrayOutput
On exit: the required function values: contains
, for .
- 6: NZ – INTEGEROutput
On exit: the number of components of
CY that are set to zero due to underflow. If
and
, elements
are set to zero. If
,
NZ simply states the number of underflows, and not which elements they are.
- 7: IFAIL – INTEGERInput/Output
-
On entry:
IFAIL must be set to
,
. If you are unfamiliar with this parameter you should refer to
Section 3.3 in the Essential Introduction for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is
.
When the value is used it is essential to test the value of IFAIL on exit.
On exit:
unless the routine detects an error or a warning has been flagged (see
Section 6).
6 Error Indicators and Warnings
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
X04AAF).
Errors or warnings detected by the routine:
On entry, | , |
or | , |
or | , |
or | or . |
-
No computation has been performed due to the likelihood of overflow, because
is less than a machine-dependent threshold value (given in the
Users' Note for your implementation).
-
No computation has been performed due to the likelihood of overflow, because
is too large – how large depends on
Z and the overflow threshold of the machine.
The computation has been performed, but the errors due to argument reduction in elementary functions make it likely that the results returned by S18DCF are accurate to less than half of
machine precision. This error exit may occur if either
or
is greater than a machine-dependent threshold value (given in the
Users' Note for your implementation).
No computation has been performed because the errors due to argument reduction in elementary functions mean that all precision in results returned by S18DCF would be lost. This error exit may occur when either
or
is greater than a machine-dependent threshold value (given in the
Users' Note for your implementation).
No results are returned because the algorithm termination condition has not been met. This may occur because the parameters supplied to S18DCF would have caused overflow or underflow.
7 Accuracy
All constants in S18DCF are given to approximately digits of precision. Calling the number of digits of precision in the floating point arithmetic being used , then clearly the maximum number of correct digits in the results obtained is limited by . Because of errors in argument reduction when computing elementary functions inside S18DCF, the actual number of correct digits is limited, in general, by , where represents the number of digits lost due to the argument reduction. Thus the larger the values of and , the less the precision in the result. If S18DCF is called with , then computation of function values via recurrence may lead to some further small loss of accuracy.
If function values which should nominally be identical are computed by calls to S18DCF with different base values of
and different
N, the computed values may not agree exactly. Empirical tests with modest values of
and
have shown that the discrepancy is limited to the least significant
–
digits of precision.
The time taken for a call of S18DCF is approximately proportional to the value of
N, plus a constant. In general it is much cheaper to call S18DCF with
N greater than
, rather than to make
separate calls to S18DCF.
Paradoxically, for some values of
and
, it is cheaper to call S18DCF with a larger value of
N than is required, and then discard the extra function values returned. However, it is not possible to state the precise circumstances in which this is likely to occur. It is due to the fact that the base value used to start recurrence may be calculated in different regions for different
N, and the costs in each region may differ greatly.
Note that if the function required is
or
, i.e.,
or
, where
is real and positive, and only a single function value is required, then it may be much cheaper to call
S18ACF,
S18ADF,
S18CCF or
S18CDF, depending on whether a scaled result is required or not.
9 Example
The example program prints a caption and then proceeds to read sets of data from the input data stream. The first datum is a value for the order
FNU, the second is a complex value for the argument,
Z, and the third is a character value
to set the parameter
SCAL. The program calls the routine with
to evaluate the function for orders
FNU and
, and it prints the results. The process is repeated until the end of the input data stream is encountered.
9.1 Program Text
Program Text (s18dcfe.f90)
9.2 Program Data
Program Data (s18dcfe.d)
9.3 Program Results
Program Results (s18dcfe.r)