s01ba returns a value of the shifted logarithmic function, .
Syntax
C# |
---|
public static double s01ba( double x, out int ifail ) |
Visual Basic |
---|
Public Shared Function s01ba ( _ x As Double, _ <OutAttribute> ByRef ifail As Integer _ ) As Double |
Visual C++ |
---|
public: static double s01ba( double x, [OutAttribute] int% ifail ) |
F# |
---|
static member s01ba : x : float * ifail : int byref -> float |
Parameters
- x
- Type: System..::..DoubleOn entry: the argument of the function.Constraint: .
- 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
s01ba returns a value of the shifted logarithmic function, .
Description
s01ba computes values of , retaining full relative precision even when is small. The method is based on the Chebyshev expansion
Setting , and choosing , the expansion is valid in the domain .
Outside this domain, is computed by the standard logarithmic function.
References
Lyusternik L A, Chervonenkis O A and Yanpolskii A R (1965) Handbook for Computing Elementary Functions p. 57 Pergamon Press
Error Indicators and Warnings
Errors or warnings detected by the method:
- On entry, .The result is returned as zero.
Accuracy
The returned result should be accurate almost to machine precision, with a limit of about significant figures due to the precision of internal constants. Note however that if lies very close to and is not exact (for example if is the result of some previous computation and has been rounded), then precision will be lost in the computation of , and hence , in s01ba.
Parallelism and Performance
None.
Further Comments
Empirical tests show that the time taken for a call of s01ba usually lies between about and times the time for a call to the standard logarithm function.
Example
The example program reads values of the argument from a file, evaluates the function at each value of and prints the results.
Example program (C#): s01bae.cs