hide long namesshow long names
hide short namesshow short names
Integer type:  int32  int64  nag_int  show int32  show int32  show int64  show int64  show nag_int  show nag_int

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

NAG Toolbox: nag_opt_bounds_quasi_func_easy (e04jy)

 Contents

    1  Purpose
    2  Syntax
    7  Accuracy
    9  Example

Purpose

nag_opt_bounds_quasi_func_easy (e04jy) is an easy-to-use quasi-Newton algorithm for finding a minimum of a function Fx1,x2,,xn, subject to fixed upper and lower bounds of the independent variables x1,x2,,xn, using function values only.
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

[bl, bu, x, f, iw, w, user, ifail] = e04jy(ibound, funct1, bl, bu, x, 'n', n, 'liw', liw, 'lw', lw, 'user', user)
[bl, bu, x, f, iw, w, user, ifail] = nag_opt_bounds_quasi_func_easy(ibound, funct1, bl, bu, x, 'n', n, 'liw', liw, 'lw', lw, 'user', user)

Description

nag_opt_bounds_quasi_func_easy (e04jy) is applicable to problems of the form:
Minimize Fx1,x2,,xn  subject to  ljxjuj,  j=1,2,,n  
when derivatives of Fx are unavailable.
Special provision is made for problems which actually have no bounds on the xj, problems which have only non-negativity bounds and problems in which l1=l2==ln and u1=u2==un. You must supply a function to calculate the value of Fx at any point x.
From a starting point you supplied there is generated, on the basis of estimates of the gradient and the curvature of Fx, a sequence of feasible points which is intended to converge to a local minimum of the constrained function. An attempt is made to verify that the final point is a minimum.
A typical iteration starts at the current point x where nz (say) variables are free from both their bounds. The projected gradient vector gz, whose elements are finite difference approximations to the derivatives of Fx with respect to the free variables, is known. A unit lower triangular matrix L and a diagonal matrix D (both of dimension nz), such that LDLT is a positive definite approximation of the matrix of second derivatives with respect to the free variables (i.e., the projected Hessian) are also held. The equations
LDLTpz=-gz  
are solved to give a search direction pz, which is expanded to an n-vector p by an insertion of appropriate zero elements. Then α is found such that Fx+αp is approximately a minimum (subject to the fixed bounds) with respect to α; x is replaced by x+αp, and the matrices L and D are updated so as to be consistent with the change produced in the estimated gradient by the step αp. If any variable actually reaches a bound during the search along p, it is fixed and nz is reduced for the next iteration. Most iterations calculate gz using forward differences, but central differences are used when they seem necessary.
There are two sets of convergence criteria – a weaker and a stronger. Whenever the weaker criteria are satisfied, the Lagrange multipliers are estimated for all the active constraints. If any Lagrange multiplier estimate is significantly negative, then one of the variables associated with a negative Lagrange multiplier estimate is released from its bound and the next search direction is computed in the extended subspace (i.e., nz is increased). Otherwise minimization continues in the current subspace provided that this is practicable. When it is not, or when the stronger convergence criteria are already satisfied, then, if one or more Lagrange multiplier estimates are close to zero, a slight perturbation is made in the values of the corresponding variables in turn until a lower function value is obtained. The normal algorithm is then resumed from the perturbed point.
If a saddle point is suspected, a local search is carried out with a view to moving away from the saddle point. A local search is also performed when a point is found which is thought to be a constrained minimum.

References

Gill P E and Murray W (1976) Minimization subject to bounds on the variables NPL Report NAC 72 National Physical Laboratory

Parameters

Compulsory Input Parameters

1:     ibound int64int32nag_int scalar
Indicates whether the facility for dealing with bounds of special forms is to be used.
It must be set to one of the following values:
ibound=0
If you are supplying all the lj and uj individually.
ibound=1
If there are no bounds on any xj.
ibound=2
If all the bounds are of the form 0xj.
ibound=3
If l1=l2==ln and u1=u2==un.
2:     funct1 – function handle or string containing name of m-file
You must supply funct1 to calculate the value of the function Fx at any point x. It should be tested separately before being used with nag_opt_bounds_quasi_func_easy (e04jy) (see the E04 Chapter Introduction).
[fc, user] = funct1(n, xc, user)

Input Parameters

1:     n int64int32nag_int scalar
The number n of variables.
2:     xcn – double array
The point x at which the function value is required.
3:     user – Any MATLAB object
funct1 is called from nag_opt_bounds_quasi_func_easy (e04jy) with the object supplied to nag_opt_bounds_quasi_func_easy (e04jy).

Output Parameters

1:     fc – double scalar
The value of the function F at the current point x.
2:     user – Any MATLAB object
3:     bln – double array
The lower bounds lj.
If ibound is set to 0, you must set blj to lj, for j=1,2,,n. (If a lower bound is not specified for a particular xj, the corresponding blj should be set to -106.)
If ibound is set to 3, you must set bl1 to l1; nag_opt_bounds_quasi_func_easy (e04jy) will then set the remaining elements of bl equal to bl1.
4:     bun – double array
The upper bounds uj.
If ibound is set to 0, you must set buj to uj, for j=1,2,,n. (If an upper bound is not specified for a particular xj, the corresponding buj should be set to 106.)
If ibound is set to 3, you must set bu1 to u1; nag_opt_bounds_quasi_func_easy (e04jy) will then set the remaining elements of bu equal to bu1.
5:     xn – double array
xj must be set to an estimate of the jth component of the position of the minimum, for j=1,2,,n.

Optional Input Parameters

1:     n int64int32nag_int scalar
Default: the dimension of the arrays bl, bu, x. (An error is raised if these dimensions are not equal.)
The number n of independent variables.
Constraint: n1.
2:     liw int64int32nag_int scalar
Default: n+2
The dimension of the array iw.
Constraint: liwn+2.
3:     lw int64int32nag_int scalar
Default: maxn×n-1/2+12×n,13
The dimension of the array w.
Constraint: lwmaxn×n-1/2+12×n,13.
4:     user – Any MATLAB object
user is not used by nag_opt_bounds_quasi_func_easy (e04jy), but is passed to funct1. Note that for large objects it may be more efficient to use a global variable which is accessible from the m-files than to use user.

Output Parameters

1:     bln – double array
The lower bounds actually used by nag_opt_bounds_quasi_func_easy (e04jy).
2:     bun – double array
The upper bounds actually used by nag_opt_bounds_quasi_func_easy (e04jy).
3:     xn – double array
The lowest point found during the calculations. Thus, if ifail=0 on exit, xj is the jth component of the position of the minimum.
4:     f – double scalar
The value of Fx corresponding to the final point stored in x.
5:     iwliw int64int32nag_int array
If ifail=0, 3 or 5, the first n elements of iw contain information about which variables are currently on their bounds and which are free. Specifically, if xi is:
fixed on its upper bound, iwi is -1;
fixed on its lower bound, iwi is -2;
effectively a constant (i.e., lj=uj), iwi is -3;
free, iwi gives its position in the sequence of free variables.
In addition, iwn+1 contains the number of free variables (i.e., nz). The rest of the array is used as workspace.
6:     wlw – double array
If ifail=0, 3 or 5, wi contains a finite difference approximation to the ith element of the projected gradient vector gz, for i=1,2,,n. In addition, wn+1 contains an estimate of the condition number of the projected Hessian matrix (i.e., k). The rest of the array is used as workspace.
7:     user – Any MATLAB object
8:     ifail int64int32nag_int scalar
ifail=0 unless the function detects an error (see Error Indicators and Warnings).

Error Indicators and Warnings

Note: nag_opt_bounds_quasi_func_easy (e04jy) may return useful information for one or more of the following detected errors or warnings.
Errors or warnings detected by the function:

Cases prefixed with W are classified as warnings and do not generate an error of type NAG:error_n. See nag_issue_warnings.

   ifail=1
On entry,n<1,
oribound<0,
oribound>3,
oribound=0 and blj>buj for some j,
oribound=3 and bl1>bu1,
orliw<n+2,
or lw < max13,12×n+n×n-1/2 .
   ifail=2
There have been 400×n function evaluations, yet the algorithm does not seem to be converging. The calculations can be restarted from the final point held in x. The error may also indicate that Fx has no minimum.
W  ifail=3
The conditions for a minimum have not all been met but a lower point could not be found and the algorithm has failed.
   ifail=4
An overflow has occurred during the computation. This is an unlikely failure, but if it occurs you should restart at the latest point given in x.
W  ifail=5
W  ifail=6
W  ifail=7
W  ifail=8
There is some doubt about whether the point x found by nag_opt_bounds_quasi_func_easy (e04jy) is a minimum. The degree of confidence in the result decreases as ifail increases. Thus, when ifail=5 it is probable that the final x gives a good estimate of the position of a minimum, but when ifail=8 it is very unlikely that the function has found a minimum.
   ifail=9
In the search for a minimum, the modulus of one of the variables has become very large 106. This indicates that there is a mistake in funct1, that your problem has no finite solution, or that the problem needs rescaling (see Further Comments).
   ifail=10
The computed set of forward-difference intervals (stored in w9×n+1,w9×n+2,, w10×n) is such that xi+w9×n+ixi for some i.
This is an unlikely failure, but if it occurs you should attempt to select another starting point.
   ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
   ifail=-399
Your licence key may have expired or may not have been installed correctly.
   ifail=-999
Dynamic memory allocation failed.
If you are dissatisfied with the result (e.g., because ifail=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. If persistent trouble occurs and the gradient can be calculated, it may be advisable to change to a function which uses gradients (see the E04 Chapter Introduction).

Accuracy

A successful exit (ifail=0) is made from nag_opt_bounds_quasi_func_easy (e04jy) when (B1, B2 and B3) or B4 hold, and the local search confirms a minimum, where (Quantities with superscript k are the values at the kth iteration of the quantities mentioned in Description, xtol=100ε, ε is the machine precision and . denotes the Euclidean norm. The vector gz is returned in the array w.)
If ifail=0, then the vector in x on exit, xsol, is almost certainly an estimate of the position of the minimum, xtrue, to the accuracy specified by xtol.
If ifail=3 or 5, xsol may still be a good estimate of xtrue, but the following checks should be made. Let k denote an estimate of the condition number of the projected Hessian matrix at xsol. (The value of k is returned in wn+1). If
(i) the sequence Fx k  converges to Fxsol at a superlinear or a fast linear rate,
(ii) gzxxol2<10.0×ε, and
(iii) k<1.0/gzxsol,
then it is almost certain that xsol is a close approximation to the position of a minimum. When (ii) is true, then usually Fxsol is a close approximation to Fxtrue
When a successful exit is made then, for a computer with a mantissa of t decimals, one would expect to get about t/2-1 decimals accuracy in x and about t-1 decimals accuracy in F, provided the problem is reasonably well scaled.

Further Comments

The number of iterations required depends on the number of variables, the behaviour of Fx and the distance of the starting point from the solution. The number of operations performed in an iteration of nag_opt_bounds_quasi_func_easy (e04jy) is roughly proportional to n2. In addition, each iteration makes at least m+1 calls of funct1, where m is the number of variables not fixed on bounds. So, unless Fx can be evaluated very quickly, the run time will be dominated by the time spent in funct1.
Ideally the problem should be scaled so that at the solution the value of Fx and the corresponding values of x1,x2,,xn are each in the range -1,+1, and so that at points a unit distance away from the solution, F 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 nag_opt_bounds_quasi_func_easy (e04jy) will take less computer time.

Example

To minimize
F= x1+10x2 2+5 x3-x4 2+ x2-2x3 4+10 x1-x4 4  
subject to
-1x1 3, -2x2 0, -1x4 3,  
starting from the initial guess 3,-1,0,1 .
function e04jy_example


fprintf('e04jy example results\n\n');

ibound = int64(0);
bl = [1;  -2;  -1000000;  1];
bu = [3;   0;   1000000;  3];
x  = [3;  -1;         0;  1];

% Catch warnings and assume ifail=3,5 gives a good estimate
wstat = warning();
warning('OFF');
[bl, bu, x, f, iw, w, user, ifail] = e04jy(ibound, @funct1, bl, bu, x);
if (ifail == 0 || ifail == 5 | ifail == 3)
  fprintf('Minimum found at x: ');
  fprintf(' %9.4f',x);
  fprintf('\nMinimum value     :  %9.4f\n\n',f);
  for i=1:4
    fprintf('variable %d is ',i);
    if (iw(i)==-1)
      fprintf('locked at upper bound\n');
    elseif (iw(i)==-2)
      fprintf('locked at lower bound\n');
    elseif (iw(i)==-3)
      fprintf('locked at constant value\n');
    else
      fprintf('free with index %d\n',iw(i));
    end
  end
else   
  fprintf(' Error: e04jy returns ifail = %d\n',ifail);
end
warning(wstat);



function [fc, user] = funct1(n, xc, user)
  x1 = xc(1) + 10*xc(2);
  x2 = xc(3) -    xc(4);
  x3 = xc(2) -  2*xc(3);
  x4 = xc(1) -    xc(4);
  fc = x1^2 + 5*x2^2 + x3^4 + 10*x4^4;
e04jy example results

Minimum found at x:     1.0000   -0.0852    0.4093    1.0000
Minimum value     :     2.4338

variable 1 is locked at lower bound
variable 2 is free with index 1
variable 3 is free with index 2
variable 4 is locked at lower bound

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015