NAG FL Interface
e04gyf (lsq_​uncon_​quasi_​deriv_​easy)

Note: this routine is deprecated. Replaced by e04ggf.
e04ggf is part of the new NAG optimization modelling suite (see Section 3.1 in the E04 Chapter Introduction), therefore the definition of the nonlinear residual function values and gradients need to be split into two separate subroutines. e04ggf is a modern replacement for e04gyf and offers additional functionality, such as the addition of variable bounds and user-evaluation recovery, amongst many others.
Callbacks

Old Code

        Subroutine lsfun2(m,n,xc,fvec,fjac,ldfjac,iuser,ruser)

!       Routine to evaluate the residuals and their 1st derivatives.
!       .. Scalar Arguments ..
         Integer, Intent (In)           :: ldfjac, m, n
!       .. Array Arguments ..
         Real (Kind=nag_wp), Intent (Inout) :: fjac(ldfjac,n), ruser(*)
         Real (Kind=nag_wp), Intent (Out) :: fvec(m)
         Real (Kind=nag_wp), Intent (In) :: xc(n)
         Integer, Intent (Inout)        :: iuser(*)
!       .. Local Scalars ..
         Real (Kind=nag_wp)             :: denom, dummy
         Integer                        :: i
!       .. Executable Statements ..

         fvec(1:m) = ...
         fjac(1:ldfjac,1:n) = ...

         Return
        End Subroutine lsfun2

New Code

        Subroutine lsqfun(nvar,x,nres,rx,inform,iuser,ruser,cpuser)

!        .. Use Statements ..
          Use, Intrinsic                 :: iso_c_binding, Only: c_ptr
!        .. Scalar Arguments ..
          Type (c_ptr), Intent (In)      :: cpuser
          Integer, Intent (Inout)        :: inform
          Integer, Intent (In)           :: nres, nvar
!        .. Array Arguments ..
          Real (Kind=nag_wp), Intent (Inout) :: ruser(*)
          Real (Kind=nag_wp), Intent (Out) :: rx(nres)
          Real (Kind=nag_wp), Intent (In) :: x(nvar)
          Integer, Intent (Inout)        :: iuser(*)
!        .. Executable Statements ..

!        Compute residuals
          rx(:) = ...

!        Inform evaluation was successful
          inform = 0
          Return
        End Subroutine lsqfun

        Subroutine lsqgrd(nvar,x,nres,nnzrd,rdx,inform,iuser,ruser,cpuser)

!        .. Use Statements ..
          Use, Intrinsic                 :: iso_c_binding, Only: c_ptr
!        .. Scalar Arguments ..
          Type (c_ptr), Intent (In)      :: cpuser
          Integer, Intent (Inout)        :: inform
          Integer, Intent (In)           :: nnzrd, nres, nvar
!        .. Array Arguments ..
          Real (Kind=nag_wp), Intent (Inout) :: rdx(nnzrd), ruser(*)
          Real (Kind=nag_wp), Intent (In) :: x(nvar)
          Integer, Intent (Inout)        :: iuser(*)
!        .. Executable Statements ..

!        Compute gradient of residuals
          rdx(:) = ...

!        Inform evaluation was successful
          inform = 0
          Return
        End Subroutine lsqgrd
Main Call

Old Code

       ifail = -1
       Call e04gyf(m,n,lsfun2,x,fsumsq,w,lw,iuser,ruser,ifail)

New Code

!      .. Use Statements ..
        Use, Intrinsic                   :: iso_c_binding, Only: c_null_ptr, c_ptr

!      ...

!      Initialize problem with n variables
        ifail = 0
        Call e04raf(handle,n,ifail)

!      Define nonlinear least-square problem with m residuals and dense structure
        isparse = 0
        nnzrd = 0
        Call e04rmf(handle,m,isparse,nnzrd,irowrd,icolrd,ifail)

!      Solve the problem
        cpuser = c_null_ptr
        ifail = -1
        Call e04ggf(handle,lsqfun,lsqgrd,e04ggu,e04ggv,e04ffu,n,x,m,rx,rinfo,    &
          stats,iuser,ruser,cpuser,ifail)

        fsumsq = 2.0_nag_wp * rinfo(1)

!      Free the handle memory
        ifail = 0
        Call e04rzf(handle,ifail)
Settings help

FL Name Style:


FL Specification Language:


1 Purpose

e04gyf is an easy-to-use quasi-Newton algorithm for finding an unconstrained minimum of a sum of squares of m nonlinear functions in n variables (mn). First 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).

2 Specification

Fortran Interface
Subroutine e04gyf ( m, n, lsfun2, x, fsumsq, w, lw, iuser, ruser, ifail)
Integer, Intent (In) :: m, n, lw
Integer, Intent (Inout) :: iuser(*), ifail
Real (Kind=nag_wp), Intent (Inout) :: x(n), ruser(*)
Real (Kind=nag_wp), Intent (Out) :: fsumsq, w(lw)
External :: lsfun2
C Header Interface
#include <nag.h>
void  e04gyf_ (const Integer *m, const Integer *n,
void (NAG_CALL *lsfun2)(const Integer *m, const Integer *n, const double xc[], double fvec[], double fjac[], const Integer *ldfjac, Integer iuser[], double ruser[]),
double x[], double *fsumsq, double w[], const Integer *lw, Integer iuser[], double ruser[], Integer *ifail)
The routine may be called by the names e04gyf or nagf_opt_lsq_uncon_quasi_deriv_easy.

3 Description

e04gyf is similar to the subroutine LSFDQ2 in the NPL Algorithms Library. It is applicable to problems of the form
MinimizeF(x)=i=1m[fi(x)]2  
where x=(x1,x2,,xn)T and mn. (The functions fi(x) are often referred to as ‘residuals’.) You must supply a subroutine to evaluate the residuals and their first derivatives at any point x.
Before attempting to minimize the sum of squares, the algorithm checks the subroutine for consistency. Then, 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 F(x).

4 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

5 Arguments

1: m Integer Input
2: n Integer Input
On entry: the number m of residuals, fi(x), and the number n of variables, xj.
Constraint: 1nm.
3: lsfun2 Subroutine, supplied by the user. External Procedure
You must supply this routine to calculate the vector of values fi(x) and the Jacobian matrix of first derivatives fi xj at any point x. It should be tested separately before being used in conjunction with e04gyf (see the E04 Chapter Introduction).
The specification of lsfun2 is:
Fortran Interface
Subroutine lsfun2 ( m, n, xc, fvec, fjac, ldfjac, iuser, ruser)
Integer, Intent (In) :: m, n, ldfjac
Integer, Intent (Inout) :: iuser(*)
Real (Kind=nag_wp), Intent (In) :: xc(n)
Real (Kind=nag_wp), Intent (Inout) :: fjac(ldfjac,n), ruser(*)
Real (Kind=nag_wp), Intent (Out) :: fvec(m)
C Header Interface
void  lsfun2 (const Integer *m, const Integer *n, const double xc[], double fvec[], double fjac[], const Integer *ldfjac, Integer iuser[], double ruser[])
Important: the dimension declaration for fjac must contain the variable ldfjac, not an integer constant.
1: m Integer Input
On entry: m, the numbers of residuals.
2: n Integer Input
On entry: n, the numbers of variables.
3: xc(n) Real (Kind=nag_wp) array Input
On entry: the point x at which the values of the fi and the fi xj are required.
4: fvec(m) Real (Kind=nag_wp) array Output
On exit: fvec(i) must contain the value of fi at the point x, for i=1,2,,m.
5: fjac(ldfjac,n) Real (Kind=nag_wp) array Output
On exit: fjac(i,j) must contain the value of fi xj at the point x, for i=1,2,,m and j=1,2,,n.
6: ldfjac Integer Input
On entry: the first dimension of the array fjac, set to m by e04gyf.
7: iuser(*) Integer array User Workspace
8: ruser(*) Real (Kind=nag_wp) array User Workspace
lsfun2 is called with the arguments iuser and ruser as supplied to e04gyf. You should use the arrays iuser and ruser to supply information to lsfun2.
lsfun2 must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which e04gyf is called. Arguments denoted as Input must not be changed by this procedure.
Note: lsfun2 should not return floating-point NaN (Not a Number) or infinity values, since these are not handled by e04gyf. If your code inadvertently does return any NaNs or infinities, e04gyf is likely to produce unexpected results.
4: x(n) Real (Kind=nag_wp) array Input/Output
On entry: x(j) must be set to a guess at the jth component of the position of the minimum, for j=1,2,,n. The routine checks the first derivatives calculated by lsfun2 at the starting point and so is more likely to detect an error in your routine if the initial x(j) are nonzero and mutually distinct.
On exit: the lowest point found during the calculations. Thus, if ifail=0 on exit, x(j) is the jth component of the position of the minimum.
5: fsumsq Real (Kind=nag_wp) Output
On exit: the value of the sum of squares, F(x), corresponding to the final point stored in x.
6: w(lw) Real (Kind=nag_wp) array Communication Array
7: lw Integer Input
On entry: the dimension of the array w as declared in the (sub)program from which e04gyf is called.
Constraints:
  • if n>1, lw8×n+2×n×n+2×m×n+3×m;
  • if n=1, lw11+5×m.
8: iuser(*) Integer array User Workspace
9: ruser(*) Real (Kind=nag_wp) array User Workspace
iuser and ruser are not used by e04gyf, but are passed directly to lsfun2 and may be used to pass information to this routine.
10: ifail Integer Input/Output
On entry: ifail must be set to 0, −1 or 1 to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of 0 causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of −1 means that an error message is printed while a value of 1 means that it is not.
If halting is not appropriate, the value −1 or 1 is recommended. If message printing is undesirable, then the value 1 is recommended. Otherwise, the value −1 is recommended since useful values can be provided in some output arguments even when ifail0 on exit. When the value -1 or 1 is used it is essential to test the value of ifail on exit.
On exit: ifail=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6 Error Indicators and Warnings

If on entry ifail=0 or −1, explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
Note: in some cases e04gyf may return useful information.
If you are not satisfied with the result (e.g., because ifail=3, 4, 5, 6, 7 or 8), 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.
ifail=1
On entry, m=value and n=value.
Constraint: mn.
On entry, n=value.
Constraint: n1.
On entry, n=1 and lw=value.
Constraint: if n=1 then lw11+5×m; that is, value.
On entry, n>1 and lw=value.
Constraint: if n>1 then lw8×n+2×n2+2×m×n+3×m; that is, value.
ifail=2
There have been 50×n calls to lsfun2.
The algorithm does not seem to have converged. This may be due to an awkward function or to a poor starting point, so it is worth restarting e04gyf from the final point held in x.
ifail=3
The conditions for a minimum have not all been satisfied, but a lower point could not be found. See Section 7 for further information.
ifail=4
Failure in computing SVD of Jacobian matrix.
ifail=5
It is probable that a local minimum has been found, but it cannot be guaranteed.
ifail=6
It is possible that a local minimum has been found, but it cannot be guaranteed.
ifail=7
It is unlikely that a local minimum has been found.
ifail=8
It is very unlikely that a local minimum has been found.
ifail=9
It is very likely that you have made an error in forming the derivatives in lsfun2.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.

7 Accuracy

If the problem is reasonably well scaled and a successful exit is made then, for a computer with a mantissa of t decimals, one would expect to get t/2-1 decimals accuracy in the components of x and between t-1 (if F(x) is of order 1 at the minimum) and 2t-2 (if F(x) is close to zero at the minimum) decimals accuracy in F(x).

8 Parallelism and Performance

Background information to multithreading can be found in the Multithreading documentation.
e04gyf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
e04gyf makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the Users' Note for your implementation for any additional implementation-specific information.

9 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 e04gyf varies, but for mn is approximately n×m2+O(n3). In addition, each iteration makes at least one call of lsfun2. So, unless the residuals and their derivatives can be evaluated very quickly, the run time will be dominated by the time spent in lsfun2.
Ideally the problem should be scaled so that the minimum value of the sum of squares is in the range (0,1) 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 e04gyf 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, using information returned in segments of the workspace array w. See e04ycf for further details.

10 Example

This example finds the least squares estimates of x1, x2 and x3 in the model
y=x1+t1x2t2+x3t3  
using the 15 sets of data given in the following table.
y t1 t2 t3 0.14 1.0 15.0 1.0 0.18 2.0 14.0 2.0 0.22 3.0 13.0 3.0 0.25 4.0 12.0 4.0 0.29 5.0 11.0 5.0 0.32 6.0 10.0 6.0 0.35 7.0 9.0 7.0 0.39 8.0 8.0 8.0 0.37 9.0 7.0 7.0 0.58 10.0 6.0 6.0 0.73 11.0 5.0 5.0 0.96 12.0 4.0 4.0 1.34 13.0 3.0 3.0 2.10 14.0 2.0 2.0 4.39 15.0 1.0 1.0  
The program uses (0.5,1.0,1.5) as the initial guess at the position of the minimum.

10.1 Program Text

Program Text (e04gyfe.f90)

10.2 Program Data

Program Data (e04gyfe.d)

10.3 Program Results

Program Results (e04gyfe.r)