NAG Library Routine Document
s15agf
(erfcx_real)
1
Purpose
s15agf returns the value of the scaled complementary error function , via the function name.
2
Specification
Fortran Interface
Real (Kind=nag_wp) | :: | s15agf | Integer, Intent (Inout) | :: |
ifail | Real (Kind=nag_wp), Intent (In) | :: |
x |
|
C Header Interface
#include nagmk26.h
double |
s15agf_ (
const double *x,
Integer *ifail) |
|
3
Description
s15agf calculates an approximate value for the scaled complementary error function
Let
be the root of the equation
(then
). For
the value of
is based on the following rational Chebyshev expansion for
:
where
denotes a rational function of degree
in the numerator and
in the denominator.
For
the value of
is based on a rational Chebyshev expansion for
: for
the value is based on the expansion
and for
it is based on the expansion
For each expansion, the specific values of
and
are selected to be minimal such that the maximum relative error in the expansion is of the order
, where
is the maximum number of decimal digits that can be accurately represented for the particular implementation (see
x02bef).
Asymptotically,
. There is a danger of setting underflow in
whenever
, where
is the largest positive model number (see
x02alf) and
is the smallest positive model number (see
x02akf). In this case
s15agf exits with
and returns
. For
in the range
, where
is the
machine precision, the asymptotic value
is returned for
and
s15agf exits with
.
There is a danger of setting overflow in whenever . In this case s15agf exits with and returns .
The values of
,
and
are given in the
Users' Note for your implementation.
4
References
Abramowitz M and Stegun I A (1972) Handbook of Mathematical Functions (3rd Edition) Dover Publications
Cody W J (1969) Rational Chebyshev approximations for the error function Math.Comp. 23 631–637
5
Arguments
- 1: – Real (Kind=nag_wp)Input
-
On entry: the argument of the function.
- 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, because for this routine the values of the output arguments may be useful even if
on exit, 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).
Note: s15agf may return useful information for one or more of the following detected errors or warnings.
Errors or warnings detected by the routine:
-
On entry, and the constant .
Constraint: .
-
On entry, was in the interval where is approximately : .
-
On entry, and the constant .
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
The relative error in computing
may be estimated by evaluating
where
denotes repeated integration. Empirical results suggest that on the interval
the loss in base
significant digits for maximum relative error is around
, while for root-mean-square relative error on that interval it is
(see
x02bhf for the definition of the model parameter
). On the interval
the values are around
for maximum and
for root-mean-square relative errors; note that on these two intervals
is the primary computation. See also
Section 7 in
s15adf.
8
Parallelism and Performance
s15agf 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 (s15agfe.f90)
10.2
Program Data
Program Data (s15agfe.d)
10.3
Program Results
Program Results (s15agfe.r)