S15ABF (PDF version)
S Chapter Contents
S Chapter Introduction
NAG Library Manual

NAG Library Routine Document

S15ABF

Note:  before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.

+ Contents

    1  Purpose
    7  Accuracy

1  Purpose

S15ABF returns the value of the cumulative Normal distribution function, Px, via the function name.

2  Specification

FUNCTION S15ABF ( X, IFAIL)
REAL (KIND=nag_wp) S15ABF
INTEGER  IFAIL
REAL (KIND=nag_wp)  X

3  Description

S15ABF evaluates an approximate value for the cumulative Normal distribution function
Px=12π-xe-u2/2du.
The routine is based on the fact that
Px=12erfc-x2
and it calls S15ADF to obtain a value of erfc for the appropriate argument.

4  References

Abramowitz M and Stegun I A (1972) Handbook of Mathematical Functions (3rd Edition) Dover Publications

5  Parameters

1:     X – REAL (KIND=nag_wp)Input
On entry: the argument x of the function.
2:     IFAIL – INTEGERInput/Output
On entry: IFAIL must be set to 0, -1​ or ​1. 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 -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is 0. When the value -1​ or ​1 is used it is essential to test the value of IFAIL on exit.
On exit: IFAIL=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6  Error Indicators and Warnings

There are no failure exits from this routine. The parameter IFAIL is included for consistency with other routines in this chapter.

7  Accuracy

Because of its close relationship with erfc, the accuracy of this routine is very similar to that in S15ADF. If ε and δ are the relative errors in result and argument, respectively, they are in principle related by
ε x e -12 x2 2πPx δ
so that the relative error in the argument, x, is amplified by a factor, xe-12x2 2πPx , in the result.
For x small and for x positive this factor is always less than one and accuracy is mainly limited by machine precision.
For large negative x the factor behaves like x2 and hence to a certain extent relative accuracy is unavoidably lost.
However the absolute error in the result, E, is given by
E x e -12 x2 2π δ
so absolute accuracy can be guaranteed for all x.

8  Further Comments

None.

9  Example

This example reads values of the argument x from a file, evaluates the function at each value of x and prints the results.

9.1  Program Text

Program Text (s15abfe.f90)

9.2  Program Data

Program Data (s15abfe.d)

9.3  Program Results

Program Results (s15abfe.r)


S15ABF (PDF version)
S Chapter Contents
S Chapter Introduction
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2012