NAG Library Routine Document
s22baf
(hyperg_confl_real)
1
Purpose
s22baf returns a value for the confluent hypergeometric function with real parameters and , and real argument . This function is sometimes also known as Kummer's function .
2
Specification
Fortran Interface
Integer, Intent (Inout) | :: |
ifail | Real (Kind=nag_wp), Intent (In) | :: |
a,
b,
x | Real (Kind=nag_wp), Intent (Out) | :: |
m |
|
C Header Interface
#include nagmk26.h
void |
s22baf_ (
const double *a,
const double *b,
const double *x,
double *m,
Integer *ifail) |
|
3
Description
s22baf returns a value for the confluent hypergeometric function with real parameters and , and real argument . This function is unbounded or not uniquely defined for equal to zero or a negative integer.
The associated routine
s22bbf performs the same operations, but returns
in the scaled form
to allow calculations to be performed when
is not representable as a single working precision number. It also accepts the parameters
and
as summations of an integer and a decimal fraction, giving higher accuracy when
or
are close to an integer. In such cases,
s22bbf should be used when high accuracy is required.
The confluent hypergeometric function is defined by the confluent series
where
is the rising factorial of
.
is a solution to the second order ODE (Kummer's Equation):
Given the parameters and argument , this routine determines a set of safe values and selects an appropriate algorithm to accurately evaluate the functions . The result is then used to construct the solution to the original problem using, where necessary, recurrence relations and/or continuation.
Additionally, an artificial bound, is placed on the magnitudes of , and to minimize the occurrence of overflow in internal calculations. , where . It should, however, not be assumed that this routine will produce an accurate result for all values of , and satisfying this criterion.
Please consult the
NIST Digital Library of Mathematical Functions for a detailed discussion of the confluent hypergeometric function including special cases, transformations, relations and asymptotic approximations.
4
References
Pearson J (2009) Computation of hypergeometric functions MSc Dissertation, Mathematical Institute, University of Oxford
5
Arguments
- 1: – Real (Kind=nag_wp)Input
-
On entry: the parameter of the function.
Constraint:
.
- 2: – Real (Kind=nag_wp)Input
-
On entry: the parameter of the function.
Constraint:
.
- 3: – Real (Kind=nag_wp)Input
-
On entry: the argument of the function.
Constraint:
.
- 4: – Real (Kind=nag_wp)Output
-
On exit: the solution
.
Note: if overflow occurs upon completion, as indicated by
,
may be assumed to be too large to be representable.
m will be returned as
, where
is the largest representable real number (see
x02alf). The sign of
m should match the sign of
. If overflow occurs during a subcalculation, as indicated by
, the sign may be incorrect, and the true value of
may or may not be greater than
. In either case it is advisable to subsequently use
s22bbf.
- 5: – 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:
-
Underflow occurred during the evaluation of .
The returned value may be inaccurate.
-
On completion, overflow occurred in the evaluation of .
-
All approximations have completed, and the final residual estimate indicates some precision may have been lost.
Relative residual .
-
All approximations have completed, and the final residual estimate indicates no accuracy can be guaranteed.
Relative residual .
-
Overflow occurred in a subcalculation of .
The answer may be completely incorrect.
-
On entry, .
Constraint: .
-
On entry, .
Constraint: .
-
On entry, .
is undefined when is zero or a negative integer.
-
On entry, .
Constraint: .
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
In general, if
, the value of
may be assumed accurate, with the possible loss of one or two decimal places. Assuming the result does not under or overflow, an error estimate
is made internally using equation
(1). If the magnitude of
is sufficiently large, a
nonzero
ifail
will be returned. Specifically,
|
|
|
|
|
|
where
is the
machine precision as returned by
x02ajf.
A further estimate of the residual can be constructed using equation
(1), and the differential identity,
This estimate is however dependent upon the error involved in approximating and .
Furthermore, the accuracy of the solution, and the error estimate, can be dependent upon the accuracy of the decimal fraction of the input parameters
and
. For example, if
, then on a machine with
decimal digits of precision, the internal calculation of
will only be accurate to
decimal places. This can subsequently pollute the final solution by several decimal places without affecting the residual estimate as greatly. Should you require higher accuracy in such regions, then you should use
s22bbf, which requires you to supply the correct decimal fraction.
8
Parallelism and Performance
s22baf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
s22baf makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the
X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the
Users' Note for your implementation for any additional implementation-specific information.
None.
10
Example
This example prints the results returned by s22baf called using parameters and with differing values of argument .
10.1
Program Text
Program Text (s22bafe.f90)
10.2
Program Data
None.
10.3
Program Results
Program Results (s22bafe.r)