c05rb is an easy-to-use method that finds a solution of a system of nonlinear equations by a modification of the Powell hybrid method. You must provide the Jacobian.
Syntax
C# |
---|
public static void c05rb( C05..::..C05RB_FCN fcn, int n, double[] x, double[] fvec, double[,] fjac, double xtol, out int ifail ) |
Visual Basic |
---|
Public Shared Sub c05rb ( _ fcn As C05..::..C05RB_FCN, _ n As Integer, _ x As Double(), _ fvec As Double(), _ fjac As Double(,), _ xtol As Double, _ <OutAttribute> ByRef ifail As Integer _ ) |
Visual C++ |
---|
public: static void c05rb( C05..::..C05RB_FCN^ fcn, int n, array<double>^ x, array<double>^ fvec, array<double,2>^ fjac, double xtol, [OutAttribute] int% ifail ) |
F# |
---|
static member c05rb : fcn : C05..::..C05RB_FCN * n : int * x : float[] * fvec : float[] * fjac : float[,] * xtol : float * ifail : int byref -> unit |
Parameters
- fcn
- Type: NagLibrary..::..C05..::..C05RB_FCNDepending upon the value of iflag, fcn must either return the values of the functions at a point or return the Jacobian at .
A delegate of type C05RB_FCN.
- n
- Type: System..::..Int32On entry: , the number of equations.Constraint: .
- x
- Type: array<System..::..Double>[]()[][]An array of size [n]On entry: an initial guess at the solution vector.On exit: the final estimate of the solution vector.
- fvec
- Type: array<System..::..Double>[]()[][]An array of size [n]On exit: the function values at the final point returned in x.
- fjac
- Type: array<System..::..Double,2>[,](,)[,][,]An array of size [dim1, n]Note: dim1 must satisfy the constraint:On exit: the orthogonal matrix produced by the factorization of the final approximate Jacobian.
- xtol
- Type: System..::..DoubleOn entry: the accuracy in x to which the solution is required.Suggested value: , where is the machine precision returned by x02aj.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
The system of equations is defined as:
c05rb is based on the MINPACK routine HYBRJ1 (see Moré et al. (1980)). It chooses the correction at each step as a convex combination of the Newton and scaled gradient directions. The Jacobian is updated by the rank-1 method of Broyden. At the starting point, the Jacobian is requested, but it is not asked for again until the rank-1 method fails to produce satisfactory progress. For more details see Powell (1970).
References
Moré J J, Garbow B S and Hillstrom K E (1980) User guide for MINPACK-1 Technical Report ANL-80-74 Argonne National Laboratory
Powell M J D (1970) A hybrid method for nonlinear algebraic equations Numerical Methods for Nonlinear Algebraic Equations (ed P Rabinowitz) Gordon and Breach
Error Indicators and Warnings
Errors or warnings detected by the method:
Some error messages may refer to parameters that are dropped from this interface
(LDFJAC) In these
cases, an error in another parameter has usually caused an incorrect value to be inferred.
-
No further improvement in the solution is possible. xtol is too small: .
-
The iteration is not making good progress. This failure exit may indicate that the system does not have a zero, or that the solution is very close to the origin (see [Accuracy]). Otherwise, rerunning c05rb from a different starting point may avoid the region of difficulty.
-
On entry, .
Constraint: .
-
On entry, .
Constraint: .
-
Dynamic memory allocation failed.
Accuracy
If is the true solution, c05rb tries to ensure that
If this condition is satisfied with , then the larger components of have significant decimal digits. There is a danger that the smaller components of may have large relative errors, but the fast rate of convergence of c05rb usually obviates this possibility.
If xtol is less than machine precision and the above test is satisfied with the machine precision in place of xtol, then the method exits with .
Note: this convergence test is based purely on relative error, and may not indicate convergence if the solution is very close to the origin.
The convergence test assumes that the functions and the Jacobian are coded consistently and that the functions are reasonably well behaved. If these conditions are not satisfied, then c05rb may incorrectly indicate convergence. The coding of the Jacobian can be checked using c05zd. If the Jacobian is coded correctly, then the validity of the answer can be checked by rerunning c05rb with a lower value for xtol.
Parallelism and Performance
None.
Further Comments
Local workspace arrays of fixed lengths are allocated internally by c05rb. The total size of these arrays amounts to real elements.
The time required by c05rb to solve a given problem depends on , the behaviour of the functions, the accuracy requested and the starting point. The number of arithmetic operations executed by c05rb is approximately to process each evaluation of the functions and approximately to process each evaluation of the Jacobian. The timing of c05rb is strongly influenced by the time spent evaluating the functions.
Ideally the problem should be scaled so that, at the solution, the function values are of comparable magnitude.
Example
This example determines the values which satisfy the tridiagonal equations: