e04fy is an easy-to-use algorithm for finding an unconstrained minimum of a sum of squares of nonlinear functions in variables . No derivatives are required.
It is intended for functions which are continuous and which have continuous first and second derivatives (although it will usually work even if the derivatives have occasional discontinuities).
Syntax
C# |
---|
public static void e04fy( int m, int n, E04..::..E04FY_LSFUN1 lsfun1, double[] x, out double fsumsq, out int ifail ) |
Visual Basic |
---|
Public Shared Sub e04fy ( _ m As Integer, _ n As Integer, _ lsfun1 As E04..::..E04FY_LSFUN1, _ x As Double(), _ <OutAttribute> ByRef fsumsq As Double, _ <OutAttribute> ByRef ifail As Integer _ ) |
Visual C++ |
---|
public: static void e04fy( int m, int n, E04..::..E04FY_LSFUN1^ lsfun1, array<double>^ x, [OutAttribute] double% fsumsq, [OutAttribute] int% ifail ) |
F# |
---|
static member e04fy : m : int * n : int * lsfun1 : E04..::..E04FY_LSFUN1 * x : float[] * fsumsq : float byref * ifail : int byref -> unit |
Parameters
- m
- Type: System..::..Int32On entry: the number of residuals, , and the number of variables, .Constraint: .
- n
- Type: System..::..Int32On entry: the number of residuals, , and the number of variables, .Constraint: .
- lsfun1
- Type: NagLibrary..::..E04..::..E04FY_LSFUN1You must supply this method to calculate the vector of values at any point . It should be tested separately before being used in conjunction with e04fy (see the E04 class).
A delegate of type E04FY_LSFUN1.
- x
- Type: array<System..::..Double>[]()[][]An array of size [n]On entry: must be set to a guess at the th component of the position of the minimum, for .On exit: the lowest point found during the calculations. Thus, if on exit, is the th component of the position of the minimum.
- fsumsq
- Type: System..::..Double%On exit: the value of the sum of squares, , corresponding to the final point stored in x.
- ifail
- Type: System..::..Int32%On exit: unless the method detects an error or a warning has been flagged (see [Error Indicators and Warnings]).
Description
e04fy is essentially identical to the method LSNDN1 in the NPL Algorithms Library. It is applicable to problems of the form
where and . (The functions are often referred to as ‘residuals’.)
You must supply a method to evaluate functions at any point .
From a starting point supplied by you, a sequence of points is generated which is intended to converge to a local minimum of the sum of squares. These points are generated using estimates of the curvature of .
References
Gill P E and Murray W (1978) Algorithms for the solution of the nonlinear least squares problem SIAM J. Numer. Anal. 15 977–992
Error Indicators and Warnings
Note: e04fy may return useful information for one or more of the following detected errors or warnings.
Errors or warnings detected by the method:
On entry, , or , or , when , or , when .
- The final point does not satisfy the conditions for acceptance as a minimum, but no lower point could be found.
- An auxiliary method has been unable to complete a singular value decomposition in a reasonable number of sub-iterations.
- There is some doubt about whether the point x found by e04fy is a minimum of . The degree of confidence in the result decreases as ifail increases. Thus, when , it is probable that the final gives a good estimate of the position of a minimum, but when it is very unlikely that the method has found a minimum.
If you are not satisfied with the result (e.g., because ifail lies between and ), it is worth restarting the calculations from a different starting point (not the point at which the failure occurred) in order to avoid the region which caused the failure. Repeated failure may indicate some defect in the formulation of the problem.
Accuracy
If the problem is reasonably well scaled and a successful exit is made, then, for a computer with a mantissa of decimals, one would expect to get about decimals accuracy in the components of and between (if is of order at the minimum) and (if is close to zero at the minimum) decimals accuracy in .
Parallelism and Performance
None.
Further Comments
The number of iterations required depends on the number of variables, the number of residuals and their behaviour, and the distance of the starting point from the solution. The number of multiplications performed per iteration of e04fy varies, but for is approximately . In addition, each iteration makes at least calls of lsfun1. So, unless the residuals can be evaluated very quickly, the run time will be dominated by the time spent in lsfun1.
Ideally, the problem should be scaled so that the minimum value of the sum of squares is in the range , and so that at points a unit distance away from the solution the sum of squares is approximately a unit value greater than at the minimum. It is unlikely that you will be able to follow these recommendations very closely, but it is worth trying (by guesswork), as sensible scaling will reduce the difficulty of the minimization problem, so that e04fy will take less computer time.
When the sum of squares represents the goodness-of-fit of a nonlinear model to observed data, elements of the variance-covariance matrix of the estimated regression coefficients can be computed by a subsequent call to (E04YCF not in this release), using information returned in segments of the workspace array w. See (E04YCF not in this release) for further details.
Example
This example finds least squares estimates of , and in the model
using the sets of data given in the following table.
The program uses as the initial guess at the position of the minimum.
Example program (C#): e04fye.cs