c05aw attempts to locate a zero of a continuous function using a continuation method based on a secant iteration.
Syntax
C# |
---|
public static void c05aw( ref double x, double eps, double eta, C05..::..C05AW_F f, int nfmax, out int ifail ) |
Visual Basic |
---|
Public Shared Sub c05aw ( _ ByRef x As Double, _ eps As Double, _ eta As Double, _ f As C05..::..C05AW_F, _ nfmax As Integer, _ <OutAttribute> ByRef ifail As Integer _ ) |
Visual C++ |
---|
public: static void c05aw( double% x, double eps, double eta, C05..::..C05AW_F^ f, int nfmax, [OutAttribute] int% ifail ) |
F# |
---|
static member c05aw : x : float byref * eps : float * eta : float * f : C05..::..C05AW_F * nfmax : int * ifail : int byref -> unit |
Parameters
- x
- Type: System..::..Double%On entry: an initial approximation to the zero.On exit: the final approximation to the zero, unless , or , in which case it contains no useful information.
- eps
- Type: System..::..DoubleOn entry: an absolute tolerance to control the accuracy to which the zero is determined. In general, the smaller the value of eps the more accurate x will be as an approximation to . Indeed, for very small positive values of eps, it is likely that the final approximation will satisfy . You are advised to call the method with more than one value for eps to check the accuracy obtained.Constraint: .
- eta
- Type: System..::..DoubleOn entry: a value such that if , is accepted as the zero. eta may be specified as (see [Accuracy]).
- f
- Type: NagLibrary..::..C05..::..C05AW_Ff must evaluate the function whose zero is to be determined.
A delegate of type C05AW_F.
- nfmax
- Type: System..::..Int32On entry: the maximum permitted number of calls to f from c05aw. If f is inexpensive to evaluate, nfmax should be given a large value (say ).Constraint: .
- ifail
- Type: System..::..Int32%On exit: unless the method detects an error or a warning has been flagged (see [Error Indicators and Warnings]).
Description
c05aw attempts to obtain an approximation to a simple zero of the function given an initial approximation to . The zero is found by a call to c05ax whose specification should be consulted for details of the method used.
The approximation to the zero is determined so that at least one of the following criteria is satisfied:
(i) | , |
(ii) | . |
References
None.
Error Indicators and Warnings
Errors or warnings detected by the method:
-
On entry, .
Constraint: .On entry, .
Constraint: .
-
A serious error occurred in an internal call to an auxiliary method.
Accuracy
The levels of accuracy depend on the values of eps and eta. If full machine accuracy is required, they may be set very small, resulting in an exit with or , although this may involve many more iterations than a lesser accuracy. You are recommended to set and to use eps to control the accuracy, unless you have considerable knowledge of the size of for values of near the zero.
Parallelism and Performance
None.
Further Comments
The time taken by c05aw depends primarily on the time spent evaluating the function (see [Parameters]) and on how close the initial value of x is to the zero.
Example
This example calculates the zero of from a starting value . Two calculations are made with and for comparison purposes, with in both cases.