s19aa returns a value for the Kelvin function .
Syntax
C# |
---|
public static double s19aa( double x, out int ifail ) |
Visual Basic |
---|
Public Shared Function s19aa ( _ x As Double, _ <OutAttribute> ByRef ifail As Integer _ ) As Double |
Visual C++ |
---|
public: static double s19aa( double x, [OutAttribute] int% ifail ) |
F# |
---|
static member s19aa : x : float * ifail : int byref -> float |
Parameters
- x
- Type: System..::..DoubleOn entry: the argument of the function.
- ifail
- Type: System..::..Int32%On exit: unless the method detects an error or a warning has been flagged (see [Error Indicators and Warnings]).
Return Value
s19aa returns a value for the Kelvin function .
Description
s19aa evaluates an approximation to the Kelvin function .
Note: , so the approximation need only consider .
The method is based on several Chebyshev expansions:
For ,
For ,
where , ,
and , , , and are expansions in the variable .
When is sufficiently close to zero, the result is set directly to .
For large , there is a danger of the result being totally inaccurate, as the error amplification factor grows in an essentially exponential manner; therefore the method must fail.
References
Abramowitz M and Stegun I A (1972) Handbook of Mathematical Functions (3rd Edition) Dover Publications
Error Indicators and Warnings
Errors or warnings detected by the method:
- On entry, is too large for an accurate result to be returned. On failure, the method returns zero. See also the Users' Note for your implementation.
Accuracy
Since the function is oscillatory, the absolute error rather than the relative error is important. Let be the absolute error in the result and be the relative error in the argument. If is somewhat larger than the machine precision, then we have:
(provided is within machine bounds).
For small the error amplification is insignificant and thus the absolute error is effectively bounded by the machine precision.
For medium and large , the error behaviour is oscillatory and its amplitude grows like . Therefore it is not possible to calculate the function with any accuracy when . Note that this value of is much smaller than the minimum value of for which the function overflows.
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#): s19aae.cs