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_mod_deriv_comp (e04kd)

 Contents

    1  Purpose
    2  Syntax
    7  Accuracy
    9  Example

Purpose

nag_opt_bounds_mod_deriv_comp (e04kd) is a comprehensive modified Newton algorithm for finding:
First derivatives are required. The function is intended for functions which have continuous first and second derivatives (although it will usually work even if the derivatives have occasional discontinuities).

Syntax

[bl, bu, x, hesl, hesd, istate, f, g, iw, w, ifail] = e04kd(funct, monit, eta, ibound, bl, bu, x, lh, iw, w, 'n', n, 'iprint', iprint, 'maxcal', maxcal, 'xtol', xtol, 'delta', delta, 'stepmx', stepmx)
[bl, bu, x, hesl, hesd, istate, f, g, iw, w, ifail] = nag_opt_bounds_mod_deriv_comp(funct, monit, eta, ibound, bl, bu, x, lh, iw, w, 'n', n, 'iprint', iprint, 'maxcal', maxcal, 'xtol', xtol, 'delta', delta, 'stepmx', stepmx)
Note: the interface to this routine has changed since earlier releases of the toolbox:
At Mark 22: liw and lw were removed from the interface

Description

nag_opt_bounds_mod_deriv_comp (e04kd) is applicable to problems of the form:
MinimizeFx1,x2,,xn  subject to  ljxjuj,  j=1,2,,n.  
Special provision is made for unconstrained minimization (i.e., 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. It is possible to specify that a particular xj should be held constant. You must supply a starting point, and a funct to calculate the value of Fx and its first derivatives F xj  at any point x.
A typical iteration starts at the current point x where nz (say) variables are free from their bounds. The vector gz, whose elements are the derivatives of Fx with respect to the free variables, is known. The matrix of second derivatives with respect to the free variables, H, is estimated by finite differences. (Note that gz and H are both of dimension nz.) The equations
H+Epz=-gz  
are solved to give a search direction pz. (The matrix E is chosen so that H+E is positive definite.)
pz is then expanded to an n-vector p by the insertion of appropriate zero elements, α is found such that Fx+αp is approximately a minimum (subject to the fixed bounds) with respect to α; and x is replaced by x+αp. (If a saddle point is found, a special search is carried out so as to move away from the saddle point.) If any variable actually reaches a bound, it is fixed and nz is reduced for the next iteration.
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 until the stronger convergence criteria are satisfied. If at this point there are no negative or near-zero Lagrange multiplier estimates, the process is terminated.
If you specify that the problem is unconstrained, nag_opt_bounds_mod_deriv_comp (e04kd) sets the lj to -106 and the uj to 106. Thus, provided that the problem has been sensibly scaled, no bounds will be encountered during the minimization process and nag_opt_bounds_mod_deriv_comp (e04kd) will act as an unconstrained minimization algorithm.

References

Gill P E and Murray W (1973) Safeguarded steplength algorithms for optimization using descent methods NPL Report NAC 37 National Physical Laboratory
Gill P E and Murray W (1974) Newton-type methods for unconstrained and linearly constrained optimization Math. Programming 7 311–350
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:     funct – function handle or string containing name of m-file
funct must evaluate the function Fx and its first derivatives F xj  at a specified point. (However, if you do not wish to calculate F or its first derivatives at a particular x, there is the option of setting a argument to cause nag_opt_bounds_mod_deriv_comp (e04kd) to terminate immediately.)
[iflag, fc, gc, iw, w] = funct(iflag, n, xc, iw, w)

Input Parameters

1:     iflag int64int32nag_int scalar
Will have been set to 1 or 2. The value 1 indicates that only the first derivatives of F need be supplied, and the value 2 indicates that both F itself and its first derivatives must be calculated.
2:     n int64int32nag_int scalar
The number n of variables.
3:     xcn – double array
The point x at which the F xj , or F and the F xj , are required.
4:     iwliw int64int32nag_int array
5:     wlw – double array
funct is called with the same arguments iw, liw, w, lw as for nag_opt_bounds_mod_deriv_comp (e04kd). They are present so that, when other library functions require the solution of a minimization subproblem, constants needed for the function evaluation can be passed through iw and w. Similarly, you could use elements 3,4,,liw of iw and elements from max8,7×n+n×n-1/2+1 onwards of w for passing quantities to funct from the function which calls nag_opt_bounds_mod_deriv_comp (e04kd). However, because of the danger of mistakes in partitioning, it is recommended that you should pass information to funct via global variables and not use iw or w at all. In any case you must not change the first 2 elements of iw or the first max8,7×n+n×n-1/2 elements of w.

Output Parameters

1:     iflag int64int32nag_int scalar
If it is not possible to evaluate F or its first derivatives at the point given in xc (or if it is wished to stop the calculations for any other reason) you should reset iflag to a negative number and return control to nag_opt_bounds_mod_deriv_comp (e04kd). nag_opt_bounds_mod_deriv_comp (e04kd) will then terminate immediately, with ifail set to your setting of iflag.
2:     fc – double scalar
Unless iflag=1 on entry or iflag is reset, funct must set fc to the value of the objective function F at the current point x.
3:     gcn – double array
Unless funct resets iflag, it must set gcj to the value of the first derivative F xj at the point x, for j=1,2,,n.
4:     iwliw int64int32nag_int array
5:     wlw – double array
Note:  funct should be tested separately before being used in conjunction with nag_opt_bounds_mod_deriv_comp (e04kd).
2:     monit – function handle or string containing name of m-file
If iprint0, you must supply monit which is suitable for monitoring the minimization process. monit must not change the values of any of its arguments.
If iprint<0, a monit with the correct argument list must still be supplied, although it will not be called.
[iw, w] = monit(n, xc, fc, gc, istate, gpjnrm, cond, posdef, niter, nf, iw, w)

Input Parameters

1:     n int64int32nag_int scalar
The number n of variables.
2:     xcn – double array
The coordinates of the current point x.
3:     fc – double scalar
The value of Fx at the current point x.
4:     gcn – double array
The value of F xj  at the current point x, for j=1,2,,n.
5:     istaten int64int32nag_int array
Information about which variables are currently fixed on their bounds and which are free.
If istatej is negative, xj is currently:
fixed on its upper bound if istatej=-1
fixed on its lower bound if istatej=-2
effectively a constant (i.e., lj=uj) if istatej=-3
If istatej is positive, its value gives the position of xj in the sequence of free variables.
6:     gpjnrm – double scalar
The Euclidean norm of the current projected gradient vector gz.
7:     cond – double scalar
The ratio of the largest to the smallest elements of the diagonal factor D of the approximated projected Hessian matrix. This quantity is usually a good estimate of the condition number of the projected Hessian matrix. (If no variables are currently free, cond is set to zero.)
8:     posdef – logical scalar
Specifies true or false according to whether or not the approximation to the second derivative matrix for the current subspace, H, is positive definite.
9:     niter int64int32nag_int scalar
The number of iterations (as outlined in Description) which have been performed by nag_opt_bounds_mod_deriv_comp (e04kd) so far.
10:   nf int64int32nag_int scalar
The number of evaluations of Fx so far, i.e., the number of calls of funct with iflag set to 2. Each such call of funct also calculates the first derivatives of F. (In addition to these calls monitored by nf, funct is called with iflag set to 1 not more than n times per iteration.)
11:   iwliw int64int32nag_int array
12:   wlw – double array
As in funct, these arguments correspond to the arguments iw, liw, w, lw of nag_opt_bounds_mod_deriv_comp (e04kd). They are included in monit's argument list primarily for when nag_opt_bounds_mod_deriv_comp (e04kd) is called by other library functions.

Output Parameters

1:     iwliw int64int32nag_int array
2:     wlw – double array
You should normally print fc, gpjnrm and cond to be able to compare the quantities mentioned in Accuracy. It is usually helpful to examine xc, posdef and nf too.
3:     eta – double scalar
Suggested value:
  • eta=0.5 if 1<n<10;
  • eta=0.1 if 10n20;
  • eta=0.01 if n>20.
If n=1, eta should be set to 0.0 (also when the problem is effectively one-dimensional even though n>1; i.e., if for all except one of the variables the lower and upper bounds are equal).
Every iteration of nag_opt_bounds_mod_deriv_comp (e04kd) involves a linear minimization (i.e., minimization of Fx+αp with respect to α). eta specifies how accurately these linear minimizations are to be performed. The minimum with respect to α will be located more accurately for small values of eta (say, 0.01) than large values (say, 0.9).
Although accurate linear minimizations will generally reduce the number of iterations (and hence the number of calls of funct to estimate the second derivatives), they will tend to increase the number of calls of funct needed for each linear minimization. On balance, it is usually more efficient to perform a low accuracy linear minimization when n is small and a high accuracy minimization when n is large.
Constraint: 0.0eta<1.0.
4:     ibound int64int32nag_int scalar
Indicates whether the problem is unconstrained or bounded. If there are bounds on the variables, ibound can be used to indicate 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 the variables are bounded and you are supplying all the lj and uj individually.
ibound=1
If the problem is unconstrained.
ibound=2
If the variables are bounded, but all the bounds are of the form 0xj.
ibound=3
If all the variables are bounded, and l1=l2==ln and u1=u2==un.
ibound=4
If the problem is unconstrained. (The ibound=4 option is provided for consistency with other functions. In nag_opt_bounds_mod_deriv_comp (e04kd) it produces the same effect as ibound=1.)
Constraint: 0ibound4.
5:     bln – double array
The fixed 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 any xj, the corresponding blj should be set to a large negative number, e.g., -106.)
If ibound is set to 3, you must set bl1 to l1; nag_opt_bounds_mod_deriv_comp (e04kd) will then set the remaining elements of bl equal to bl1.
If ibound is set to 1, 2 or 4, bl will be initialized by nag_opt_bounds_mod_deriv_comp (e04kd).
6:     bun – double array
The fixed 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 any variable, the corresponding buj should be set to a large positive number, e.g., 106.)
If ibound is set to 3, you must set bu1 to u1; nag_opt_bounds_mod_deriv_comp (e04kd) will then set the remaining elements of bu equal to bu1.
If ibound is set to 1, 2 or 4, bu will be initialized by nag_opt_bounds_mod_deriv_comp (e04kd).
7:     xn – double array
xj must be set to a guess at the jth component of the position of the minimum, for j=1,2,,n.
8:     lh int64int32nag_int scalar
The dimension of the array hesl.
Constraint: lhmaxn×n-1/2,1.
9:     iwliw int64int32nag_int array
liw, the dimension of the array, must satisfy the constraint liw2.
Constraint: liw2.
10:   wlw – double array
lw, the dimension of the array, must satisfy the constraint lwmax7×n+n×n-1/2,8.
Constraint: lwmax7×n+n×n-1/2,8.

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:     iprint int64int32nag_int scalar
Default: 1
The frequency with which monit is to be called.
iprint>0
monit is called once every iprint iterations and just before exit from nag_opt_bounds_mod_deriv_comp (e04kd).
iprint=0
monit is just called at the final point.
iprint<0
monit is not called at all.
iprint should normally be set to a small positive number.
3:     maxcal int64int32nag_int scalar
Default: 50×n
The maximum permitted number of evaluations of Fx, i.e., the maximum permitted number of calls of funct with iflag set to 2. It should be borne in mind that, in addition to the calls of funct which are limited directly by maxcal, there will be calls of funct (with iflag set to 1) to evaluate only first derivatives.
Constraint: maxcal1.
4:     xtol – double scalar
Default: 0.0
The accuracy in x to which the solution is required.
If xtrue is the true value of x at the minimum, then xsol, the estimated position before a normal exit, is such that xsol-xtrue<xtol×1.0+xtrue where y=j=1nyj2. For example, if the elements of xsol are not much larger than 1.0 in modulus, and if xtol is set to 10-5, then xsol is usually accurate to about five decimal places. (For further details see Accuracy.)
If the problem is scaled as described in Scaling and ε is the machine precision, then ε is probably the smallest reasonable choice for xtol. This is because, normally, to machine accuracy, Fx+εej=Fx, for any j where ej is the jth column of the identity matrix. If you set xtol to 0.0 (or any positive value less than ε), nag_opt_bounds_mod_deriv_comp (e04kd) will use 10.0×ε instead of xtol.
Constraint: xtol0.0.
5:     delta – double scalar
Default: 0.0
The differencing interval to be used for approximating the second derivatives of Fx. Thus, for the finite difference approximations, the first derivatives of Fx are evaluated at points which are delta apart. If ε is the machine precision, then ε will usually be a suitable setting for delta. If you set delta to 0.0 (or to any positive value less than ε), nag_opt_bounds_mod_deriv_comp (e04kd) will automatically use ε as the differencing interval.
Constraint: delta0.0.
6:     stepmx – double scalar
Default: 100000.0
An estimate of the Euclidean distance between the solution and the starting point supplied by you. (For maximum efficiency a slight overestimate is preferable.)
nag_opt_bounds_mod_deriv_comp (e04kd) will ensure that, for each iteration,
j=1n xj k -xj k-1 2 stepmx,  
where k is the iteration number. Thus, if the problem has more than one solution, nag_opt_bounds_mod_deriv_comp (e04kd) is most likely to find the one nearest to the starting point. On difficult problems, a realistic choice can prevent the sequence of x k  entering a region where the problem is ill-behaved and can also help to avoid possible overflow in the evaluation of Fx. However, an underestimate of stepmx can lead to inefficiency.
Constraint: stepmxxtol.

Output Parameters

1:     bln – double array
The lower bounds actually used by nag_opt_bounds_mod_deriv_comp (e04kd), e.g., if ibound=2, bl1=bl2==bln=0.0.
2:     bun – double array
The upper bounds actually used by nag_opt_bounds_mod_deriv_comp (e04kd), e.g., if ibound=2, bu1=bu2==bun=106.
3:     xn – double array
The final point x k . Thus, if ifail=0 on exit, xj is the jth component of the estimated position of the minimum.
4:     hesllh – double array
During the determination of a direction pz (see Description), H+E is decomposed into the product LDLT, where L is a unit lower triangular matrix and D is a diagonal matrix. (The matrices H, E, L and D are all of dimension nz, where nz is the number of variables free from their bounds. H consists of those rows and columns of the full estimated second derivative matrix which relate to free variables. E is chosen so that H+E is positive definite.)
hesl and hesd are used to store the factors L and D. The elements of the strict lower triangle of L are stored row by row in the first nznz-1/2 positions of hesl. The diagonal elements of D are stored in the first nz positions of hesd. In the last factorization before a normal exit, the matrix E will be zero, so that hesl and hesd will contain, on exit, the factors of the final estimated second derivative matrix H. The elements of hesd are useful for deciding whether to accept the results produced by nag_opt_bounds_mod_deriv_comp (e04kd) (see Accuracy).
5:     hesdn – double array
During the determination of a direction pz (see Description), H+E is decomposed into the product LDLT, where L is a unit lower triangular matrix and D is a diagonal matrix. (The matrices H, E, L and D are all of dimension nz, where nz is the number of variables free from their bounds. H consists of those rows and columns of the full estimated second derivative matrix which relate to free variables. E is chosen so that H+E is positive definite.)
hesl and hesd are used to store the factors L and D. The elements of the strict lower triangle of L are stored row by row in the first nznz-1/2 positions of hesl. The diagonal elements of D are stored in the first nz positions of hesd. In the last factorization before a normal exit, the matrix E will be zero, so that hesl and hesd will contain, on exit, the factors of the final estimated second derivative matrix H. The elements of hesd are useful for deciding whether to accept the results produced by nag_opt_bounds_mod_deriv_comp (e04kd) (see Accuracy).
6:     istaten int64int32nag_int array
Information about which variables are currently on their bounds and which are free. If istatej is:
  • – equal to -1, xj is fixed on its upper bound;
  • – equal to -2, xj is fixed on its lower bound;
  • – equal to -3, xj is effectively a constant (i.e., lj=uj);
  • – positive, istatej gives the position of xj in the sequence of free variables.
7:     f – double scalar
The function value at the final point given in x.
8:     gn – double array
The first derivative vector corresponding to the final point given in x. The components of g corresponding to free variables should normally be close to zero.
9:     iwliw int64int32nag_int array
liw=2.
Communication array, used to store information between calls to nag_opt_bounds_mod_deriv_comp (e04kd).
10:   wlw – double array
lw=max7×n+n×n-1/2,8.
Communication array, used to store information between calls to nag_opt_bounds_mod_deriv_comp (e04kd).
11:   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_mod_deriv_comp (e04kd) 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.

W  ifail<0
A negative value of ifail indicates an exit from nag_opt_bounds_mod_deriv_comp (e04kd) because you have set iflag negative in funct. The value of ifail will be the same as your setting of iflag.
   ifail=1
On entry,n<1,
ormaxcal<1,
oreta<0.0,
oreta1.0,
orxtol<0.0,
ordelta<0.0,
orstepmx<xtol,
oribound<0,
oribound>4,
orblj>buj for some j if ibound=0,
orbl1>bu1 if ibound=3,
or lh < max1,n×n-1/2 ,
orliw<2,
or lw < max8,7×n+n×n-1/2 .
(Note that if you have set xtol or delta to 0.0, nag_opt_bounds_mod_deriv_comp (e04kd) uses the default values and continues without failing.) When this exit occurs, no values will have been assigned to f or to the elements of hesl, hesd or g.
   ifail=2
There have been maxcal function evaluations. If steady reductions in Fx were monitored up to the point where this exit occurred, then the exit probably occurred simply because maxcal was set too small, so the calculations should be restarted from the final point held in x. This exit 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.
Provided that, on exit, the first derivatives of Fx with respect to the free variables are sufficiently small, and that the estimated condition number of the second derivative matrix is not too large, this error exit may simply mean that, although it has not been possible to satisfy the specified requirements, the algorithm has in fact found the minimum as far as the accuracy of the machine permits. Such a situation can arise, for instance, if xtol has been set so small that rounding errors in the evaluation of Fx or its derivatives make it impossible to satisfy the convergence conditions.
If the estimated condition number of the second derivative matrix at the final point is large, it could be that the final point is a minimum, but that the smallest eigenvalue of the Hessian matrix is so close to zero that it is not possible to recognize the point as a minimum.
   ifail=4
Not used. (This is done to make the significance of ifail=5 similar for nag_opt_bounds_mod_deriv_comp (e04kd) and nag_opt_bounds_mod_deriv2_comp (e04lb).)
W  ifail=5
All the Lagrange multiplier estimates which are not indisputably positive lie relatively close to zero, but it is impossible either to continue minimizing on the current subspace or to find a feasible lower point by releasing and perturbing any of the fixed variables. You should investigate as for ifail=3.
   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.
The values ifail=2, 3 or 5 may also be caused by mistakes in funct, by the formulation of the problem or by an awkward function. If there are no such mistakes, 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.

Accuracy

A successful exit (ifail=0) is made from nag_opt_bounds_mod_deriv_comp (e04kd) when H k  is positive definite and when (B1, B2 and B3) or B4 hold, where
B1 α k ×p k <xtol+ε×1.0+x k B2 F k -F k-1 <xtol2+ε×1.0+F k B3 gz k <ε1/3+xtol×1.0+F k B4 gz k <0.01×ε.  
(Quantities with superscript k are the values at the kth iteration of the quantities mentioned in Description, ε is the machine precision and . denotes the Euclidean norm.)
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 the largest of the first nz elements of hesd be hesdb, let the smallest be hesds, and define k=hesdb/hesds. The scalar k is usually a good estimate of the condition number of the projected Hessian matrix at xsol. If
(i) the sequence Fx k  converges to Fxsol at a superlinear or fast linear rate,
(ii) gzxsol2<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. The quantities needed for these checks are all available via monit; in particular the value of cond in the last call of monit before exit gives k
Further suggestions about confirmation of a computed solution are given in the E04 Chapter Introduction.

Further Comments

Timing

The number of iterations required depends on the number of variables, the behaviour of Fx, the accuracy demanded and the distance of the starting point from the solution. The number of multiplications performed in an iteration of nag_opt_bounds_mod_deriv_comp (e04kd) is nz36+Onz2. In addition, each iteration makes nz calls of funct (with iflag set to 1) in approximating the projected Hessian matrix, and at least one other call of funct (with iflag set to 2). So, unless Fx and its first derivatives can be evaluated very quickly, the run time will be dominated by the time spent in funct.

Scaling

Ideally, the problem should be scaled so that, at the solution, Fx and the corresponding values of xj are each in the range -1,+1, and so that at points one unit away from the solution, Fx differs from its value at the solution by approximately one unit. This will usually imply that the Hessian matrix at the solution is well-conditioned. 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_mod_deriv_comp (e04kd) will take less computer time.

Unconstrained Minimization

If a problem is genuinely unconstrained and has been scaled sensibly, the following points apply:
(a) nz will always be n,
(b) hesl and hesd will be factors of the full estimated second derivative matrix with elements stored in the natural order,
(c) the elements of g should all be close to zero at the final point,
(d) the values of the istatej given by monit and on exit from nag_opt_bounds_mod_deriv_comp (e04kd) are unlikely to be of interest (unless they are negative, which would indicate that the modulus of one of the xj has reached 106 for some reason),
(e) monit's argument gpjnrm simply gives the norm of the first derivative vector.

Example

A program to minimize
F= x1+10x2 2+5 x3-x4 2+ x2-2x3 4+10 x1-x4 4  
subject to the bounds
1 x1 3 -2 x2 0 1 x4 3,  
starting from the initial guess 3,-1,0,1 . Before calling nag_opt_bounds_mod_deriv_comp (e04kd), the program calls nag_opt_check_deriv (e04hc) to check the first derivatives calculated by funct.
function e04kd_example


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

global monitoring;
monitoring = false;

eta     = 0.5;
ibound  = int64(0);
bl      = [1; -2;-1000000; 1];
bu      = [3;  0; 1000000; 3];
x       = [3; -1;       0; 1];
lh      = int64(6);
iw(1:2) = int64(0);
w       = zeros(34,1);

% Catch warnings and assume ifail=3,5 gives a good estimate
wstat = warning();
warning('OFF');
[bl, bu, x, hesl, hesd, istate, f, g, iw, w, ifail] = ...
  e04kd(...
        @funct, @monit, eta, ibound, bl, bu, x, lh, iw, w);
if (ifail == 0 || ifail == 5 | ifail == 3)
  fprintf('\nMinimum found at x: ');
  fprintf(' %9.4f',x);
  fprintf('\nMinimum value     :  %9.4f\n\n',f);
else   
  fprintf('\n Error: e04kd returns ifail = %d\n',ifail);
end
warning(wstat);



function [iflag, fc, gc] = funct(iflag, n, xc)
  gc = zeros(n, 1);
  fc = 0;
  x1 = xc(1) + 10*xc(2);
  x2 = xc(3) -    xc(4);
  x3 = xc(2) -  2*xc(3);
  x4 = xc(1) -    xc(4);
  if (iflag ~= 1)
    fc = x1^2 + 5*x2^2 + x3^4 + 10*x4^4;
  end
  gc(1) =   2*x1 + 40*x4^3;
  gc(2) =  20*x1 +  4*x3^3;
  gc(3) =  10*x2 -  8*x3^3;
  gc(4) = -10*x2 - 40*x4^3;


function [] = monit(n, xc, fc, gc, istate, gpjnrm, cond, posdef, niter, nf)

global monitoring;
if (monitoring)
  fprintf('\n Itn     Fn evals         Fn value     Norm of proj gradient\n');
  fprintf(' %3d      %5d    %15.4f      %13.4f\n', niter, nf, fc, gpjnrm);
  fprintf('\n J           X(J)           G(J)         Status\n');
  for j = 1:n
    isj = istate(j);
    if (isj > 0)
      fprintf('%2d %16.4f%15.4f   %s\n', j, xc(j), gc(j), '    Free');
    elseif (isj == -1)
      fprintf('%2d %16.4f%15.4f   %s\n', j, xc(j), gc(j), '    Upper Bound');
    elseif (isj == -2)
      fprintf('%2d %16.4f%15.4f   %s\n', j, xc(j), gc(j), '    Lower Bound');
    elseif (isj == -3)
      fprintf('%2d %16.4f%15.4f   %s\n', j, xc(j), gc(j), '    Constant');
    end
  end
  if (cond ~= 0)
    if (cond > 1.0d6)
      fprintf('\nEst. condition number of projected Hessian > 10^6\n');
    else
      fprintf('\nEst. condition number of projected Hessian = %10.2f\n', cond);
    end
    if ( not(posdef) )
      % The following statement is included so that this monit can be used
      % in conjunction with either of the functions e04kd or e04lb
      fprintf('\nProjected Hessian matrix is not positive definite\n');
    end
  end
end
e04kd example results


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


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