s15ac returns the value of the complement of the cumulative Normal distribution function, .
Syntax
C# |
---|
public static double s15ac( double x ) |
Visual Basic |
---|
Public Shared Function s15ac ( _ x As Double _ ) As Double |
Visual C++ |
---|
public: static double s15ac( double x ) |
F# |
---|
static member s15ac : x : float -> float |
Parameters
- x
- Type: System..::..DoubleOn entry: the argument of the function.
Return Value
s15ac returns the value of the complement of the cumulative Normal distribution function, .
Description
References
Abramowitz M and Stegun I A (1972) Handbook of Mathematical Functions (3rd Edition) Dover Publications
Error Indicators and Warnings
None.
Accuracy
Because of its close relationship with the accuracy of this method is very similar to that in s15ad. If and are the relative errors in result and argument, respectively, then in principle they are related by
For negative or small positive this factor is always less than one and accuracy is mainly limited by machine precision. For large positive we find and hence to a certain extent relative accuracy is unavoidably lost. However the absolute error in the result, , is given by
Parallelism and Performance
None.
Further Comments
None.
Example
This example reads values of the argument from a file, evaluates the function at each value of and prints the results.
Example program (C#): s15ace.cs