s15ae returns the value of the error function .
Syntax
C# |
---|
public static double s15ae( double x ) |
Visual Basic |
---|
Public Shared Function s15ae ( _ x As Double _ ) As Double |
Visual C++ |
---|
public: static double s15ae( double x ) |
F# |
---|
static member s15ae : x : float -> float |
Parameters
- x
- Type: System..::..DoubleOn entry: the argument of the function.
Return Value
s15ae returns the value of the error function .
Description
s15ae calculates an approximate value for the 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 x02be).
For there is a danger of setting underflow in (the value of is given in the Users' Note for your implementation). For , s15ae returns ; for it returns .
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
Error Indicators and Warnings
There are no failure exits from s15ae. The parameter _ifail has been included for consistency with other methods in this chapter.
Accuracy
See [Accuracy] in s15ad.
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#): s15aee.cs