NAG Library Routine Document
s17adf (bessel_y1_real)
1
Purpose
s17adf returns the value of the Bessel function , via the function name.
2
Specification
Fortran Interface
Real (Kind=nag_wp) | :: | s17adf | Integer, Intent (Inout) | :: | ifail | Real (Kind=nag_wp), Intent (In) | :: | x |
|
C Header Interface
#include <nagmk26.h>
double |
s17adf_ (const double *x, Integer *ifail) |
|
3
Description
s17adf evaluates an approximation to the Bessel function of the second kind .
Note: is undefined for and the routine will fail for such arguments.
The routine is based on four Chebyshev expansions:
For
,
where
,
and , with .
For near zero, . This approximation is used when is sufficiently small for the result to be correct to machine precision. For extremely small , there is a danger of overflow in calculating and for such arguments the routine will fail.
For very large
, it becomes impossible to provide results with any reasonable accuracy (see
Section 7), hence the routine fails. Such arguments contain insufficient information to determine the phase of oscillation of
; only the amplitude,
, can be determined and this is returned on soft failure. The range for which this occurs is roughly related to
machine precision; the routine will fail if
(see the
Users' Note for your implementation for details).
4
References
Clenshaw C W (1962) Chebyshev Series for Mathematical Functions Mathematical tables HMSO
5
Arguments
- 1: – Real (Kind=nag_wp)Input
-
On entry: the argument of the function.
Constraint:
.
- 2: – IntegerInput/Output
-
On entry:
ifail must be set to
,
. If you are unfamiliar with this argument you should refer to
Section 3.4 in How to Use the NAG Library and its Documentation 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 argument, 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, .
Constraint: .
is too large, the function returns the amplitude of the oscillation, .
-
On entry, .
Constraint: .
is undefined, the function returns zero.
-
x is too close to zero and there is danger of overflow,
.
Constraint:
.
The function returns the value of
at the smallest valid argument.
An unexpected error has been triggered by this routine. Please
contact
NAG.
See
Section 3.9 in How to Use the NAG Library and its Documentation for further information.
Your licence key may have expired or may not have been installed correctly.
See
Section 3.8 in How to Use the NAG Library and its Documentation for further information.
Dynamic memory allocation failed.
See
Section 3.7 in How to Use the NAG Library and its Documentation for further information.
7
Accuracy
Let be the relative error in the argument and be the absolute error in the result. (Since oscillates about zero, absolute error and not relative error is significant, except for very small .)
If
is somewhat larger than the
machine precision (e.g., if
is due to data errors etc.), then
and
are approximately related by:
(provided
is also within machine bounds).
Figure 1 displays the behaviour of the amplification factor
.
However, if is of the same order as machine precision, then rounding errors could make slightly larger than the above relation predicts.
For very small , absolute error becomes large, but the relative error in the result is of the same order as .
For very large , the above relation ceases to apply. In this region, . The amplitude can be calculated with reasonable accuracy for all , but cannot. If is written as where is an integer and , then is determined by only. If , cannot be determined with any accuracy at all. Thus if is greater than, or of the order of, the inverse of the machine precision, it is impossible to calculate the phase of and the routine must fail.
8
Parallelism and Performance
s17adf is not threaded in any implementation.
None.
10
Example
This example reads values of the argument from a file, evaluates the function at each value of and prints the results.
10.1
Program Text
Program Text (s17adfe.f90)
10.2
Program Data
Program Data (s17adfe.d)
10.3
Program Results
Program Results (s17adfe.r)