NAG Library Routine Document
e04xaf
(estimate_deriv_old)
e04xaa (estimate_deriv)
1
Purpose
e04xaf/e04xaa computes an approximation to the gradient vector and/or the Hessian matrix for use in conjunction with, or following the use of an optimization routine (such as
e04uff/e04ufa).
e04xaa is a version of
e04xaf that has additional arguments in order to make it safe for use in multithreaded applications (see
Section 5).
2
Specification
2.1
Specification for e04xaf
Fortran Interface
Subroutine e04xaf ( |
msglvl,
n,
epsrf,
x,
mode,
objfun,
ldh,
hforw,
objf,
objgrd,
hcntrl,
h,
iwarn,
work,
iuser,
ruser,
info,
ifail) |
Integer, Intent (In) | :: |
msglvl,
n,
ldh | Integer, Intent (Inout) | :: |
mode,
iuser(*),
ifail | Integer, Intent (Out) | :: |
iwarn,
info(n) | Real (Kind=nag_wp), Intent (In) | :: |
epsrf | Real (Kind=nag_wp), Intent (Inout) | :: |
x(n),
hforw(n),
h(ldh,*),
work(*),
ruser(*) | Real (Kind=nag_wp), Intent (Out) | :: |
objf,
objgrd(n),
hcntrl(n) | External | :: |
objfun |
|
C Header Interface
#include nagmk26.h
void |
e04xaf_ (
const Integer *msglvl,
const Integer *n,
const double *epsrf,
double x[],
Integer *mode,
void (NAG_CALL *objfun)(
Integer *mode,
const Integer *n,
const double x[],
double *objf,
double objgrd[],
const Integer *nstate,
Integer iuser[],
double ruser[]),
const Integer *ldh,
double hforw[],
double *objf,
double objgrd[],
double hcntrl[],
double h[],
Integer *iwarn,
double work[],
Integer iuser[],
double ruser[],
Integer info[],
Integer *ifail) |
|
2.2
Specification for e04xaa
Fortran Interface
Subroutine e04xaa ( |
msglvl,
n,
epsrf,
x,
mode,
objfun,
ldh,
hforw,
objf,
objgrd,
hcntrl,
h,
iwarn,
work,
iuser,
ruser,
info,
lwsav,
iwsav,
rwsav,
ifail) |
Integer, Intent (In) | :: |
msglvl,
n,
ldh,
iwsav(1) | Integer, Intent (Inout) | :: |
mode,
iuser(*),
ifail | Integer, Intent (Out) | :: |
iwarn,
info(n) | Real (Kind=nag_wp), Intent (In) | :: |
epsrf,
rwsav(1) | Real (Kind=nag_wp), Intent (Inout) | :: |
x(n),
hforw(n),
h(ldh,*),
work(*),
ruser(*) | Real (Kind=nag_wp), Intent (Out) | :: |
objf,
objgrd(n),
hcntrl(n) | Logical, Intent (In) | :: |
lwsav(1) | External | :: |
objfun |
|
C Header Interface
#include nagmk26.h
void |
e04xaa_ (
const Integer *msglvl,
const Integer *n,
const double *epsrf,
double x[],
Integer *mode,
void (NAG_CALL *objfun)(
Integer *mode,
const Integer *n,
const double x[],
double *objf,
double objgrd[],
const Integer *nstate,
Integer iuser[],
double ruser[]),
const Integer *ldh,
double hforw[],
double *objf,
double objgrd[],
double hcntrl[],
double h[],
Integer *iwarn,
double work[],
Integer iuser[],
double ruser[],
Integer info[],
const logical lwsav[],
const Integer iwsav[],
const double rwsav[],
Integer *ifail) |
|
3
Description
e04xaf/e04xaa is similar to routine FDCALC described in
Gill et al. (1983a). It should be noted that this routine aims to compute sufficiently accurate estimates of the derivatives for use with an optimization algorithm. If you require more accurate estimates you should refer to
Chapter D04.
e04xaf/e04xaa computes finite difference approximations to the gradient vector and the Hessian matrix for a given function. The simplest approximation involves the forward-difference formula, in which the derivative
of a univariate function
is approximated by the quantity
for some interval
, where the subscript 'F' denotes ‘forward-difference’ (see
Gill et al. (1983b)).
To summarise the procedure used by
e04xaf/e04xaa (for the case when the objective function is available and you require estimates of gradient values and Hessian matrix diagonal values, i.e.,
) consider a univariate function
at the point
. (In order to obtain the gradient of a multivariate function
, where
is an
-vector, the procedure is applied to each component of
, keeping the other components fixed.) Roughly speaking, the method is based on the fact that the bound on the relative truncation error in the forward-difference approximation tends to be an increasing function of
, while the relative condition error bound is generally a decreasing function of
, hence changes in
will tend to have opposite effects on these errors (see
Gill et al. (1983b)).
The ‘best’ interval
is given by
where
is an estimate of
, and
is an estimate of the relative error associated with computing the function (see Chapter 8 of
Gill et al. (1981)). Given an interval
,
is defined by the second-order approximation
The decision as to whether a given value of
is acceptable involves
, the following bound on the relative condition error in
:
(When
is zero,
is taken as an arbitrary large number.)
The procedure selects the interval
(to be used in computing
) from a sequence of trial intervals
. The initial trial interval is taken as
, where
unless you specify the initial value to be used.
The value of
for a trial value
is defined as ‘acceptable’ if it lies in the interval
. In this case
is taken as
, and the current value of
is used to compute
from
(1). If
is unacceptable, the next trial interval is chosen so that the relative condition error bound will either decrease or increase, as required. If the bound on the relative condition error is too large, a larger interval is used as the next trial value in an attempt to reduce the condition error bound. On the other hand, if the relative condition error bound is too small,
is reduced.
The procedure will fail to produce an acceptable value of in two situations. Firstly, if is extremely small, then may never become small, even for a very large value of the interval. Alternatively, may never exceed , even for a very small value of the interval. This usually implies that is extremely large, and occurs most often near a singularity.
As a check on the validity of the estimated first derivative, the procedure provides a comparison of the forward-difference approximation computed with
(as above) and the central-difference approximation computed with
. Using the central-difference formula the first derivative can be approximated by
where
. If the values
and
do not display some agreement, neither can be considered reliable.
When both function and gradients are available and you require the Hessian matrix (i.e.,
)
e04xaf/e04xaa follows a similar procedure to the case above with the exception that the gradient function
is substituted for the objective function and so the forward-difference interval for the first derivative of
with respect to variable
is computed. The
th column of the approximate Hessian matrix is then defined as in Chapter 2 of
Gill et al. (1981), by
where
is the best forward-difference interval associated with the
th component of
and
is the vector with unity in the
th position and zeros elsewhere.
When only the objective function is available and you require the gradients and Hessian matrix (i.e.,
)
e04xaf/e04xaa again follows the same procedure as the case for
except that this time the value of
for a trial value
is defined as acceptable if it lies in the interval
and the initial trial interval is taken as
The approximate Hessian matrix
is then defined as in Chapter 2 of
Gill et al. (1981), by
4
References
Gill P E, Murray W, Saunders M A and Wright M H (1983a) Documentation for FDCALC and FDCORE Technical Report SOL 83–6 Stanford University
Gill P E, Murray W, Saunders M A and Wright M H (1983b) Computing forward-difference intervals for numerical optimization SIAM J. Sci. Statist. Comput. 4 310–321
Gill P E, Murray W and Wright M H (1981) Practical Optimization Academic Press
5
Arguments
- 1: – IntegerInput
-
On entry: must indicate the amount of intermediate output desired (see
Section 9.1 for a description of the printed output). All output is written on the current advisory message unit (see
x04abf).
Value | Definition |
0 | No printout |
1 | A summary is printed out for each variable plus any warning messages. |
Other | Values other than and should normally be used only at the direction of NAG. |
- 2: – IntegerInput
-
On entry: the number of independent variables.
Constraint:
.
- 3: – Real (Kind=nag_wp)Input
-
On entry: must define
, which is intended to be a measure of the accuracy with which the problem function
can be computed. The value of
should reflect the relative precision of
, i.e., acts as a relative precision when
is large, and as an absolute precision when
is small. For example, if
is typically of order
and the first six significant digits are known to be correct, an appropriate value for
would be
.
A discussion of
epsrf is given in Chapter 8 of
Gill et al. (1981). If
epsrf is either too small or too large on entry a warning will be printed if
, the argument
iwarn set to the appropriate value on exit and
e04xaf/e04xaa will use a default value of
, where
is the
machine precision.
If on entry then e04xaf/e04xaa will use the default value internally. The default value will be appropriate for most simple functions that are computed with full accuracy.
- 4: – Real (Kind=nag_wp) arrayInput
-
On entry: the point at which the derivatives are to be computed.
- 5: – IntegerInput/Output
-
On entry: indicates which derivatives are required.
- The gradient and Hessian diagonal values having supplied the objective function via objfun.
- The Hessian matrix having supplied both the objective function and gradients via objfun.
- The gradient values and Hessian matrix having supplied the objective function via objfun.
On exit: is changed
only if you set
mode negative in
objfun, i.e., you have requested termination of
e04xaf/e04xaa.
- 6: – Subroutine, supplied by the user.External Procedure
-
If
or
,
objfun must calculate the objective function; otherwise if
,
objfun must calculate the objective function and the gradients.
The specification of
objfun is:
Fortran Interface
Integer, Intent (In) | :: |
n,
nstate | Integer, Intent (Inout) | :: |
mode,
iuser(*) | Real (Kind=nag_wp), Intent (In) | :: |
x(n) | Real (Kind=nag_wp), Intent (Inout) | :: |
ruser(*) | Real (Kind=nag_wp), Intent (Out) | :: |
objf,
objgrd(n) |
|
- 1: – IntegerInput/Output
-
mode indicates which argument values within
objfun need to be set.
On entry: to
objfun,
mode is always set to the value that you set it to before the call to
e04xaf/e04xaa.
On exit: its value must not be altered unless you wish to indicate a failure within
objfun, in which case it should be set to a negative value. If
mode is negative on exit from
objfun, the execution of
e04xaf/e04xaa is terminated with
ifail set to
mode.
- 2: – IntegerInput
-
On entry: the number of variables as input to e04xaf/e04xaa.
- 3: – Real (Kind=nag_wp) arrayInput
-
On entry: the point at which the objective function (and gradients if ) is to be evaluated.
- 4: – Real (Kind=nag_wp)Output
-
On exit: must be set to the value of the objective function.
- 5: – Real (Kind=nag_wp) arrayOutput
-
On exit: if
,
must contain the value of the first derivative with respect to
.
If
,
objgrd need not be set.
- 6: – IntegerInput
-
On entry: will be set to
on the first call of
objfun by
e04xaf/e04xaa, and is
for all subsequent calls. Thus, if you wish,
nstate may be tested within
objfun in order to perform certain calculations once only. For example you may read data.
- 7: – Integer arrayUser Workspace
- 8: – Real (Kind=nag_wp) arrayUser Workspace
-
objfun is called with the arguments
iuser and
ruser as supplied to
e04xaf/e04xaa. You should use the arrays
iuser and
ruser to supply information to
objfun.
objfun must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which
e04xaf/e04xaa is called. Arguments denoted as
Input must
not be changed by this procedure.
Note: objfun should not return floating-point NaN (Not a Number) or infinity values, since these are not handled by
e04xaf/e04xaa. If your code inadvertently
does return any NaNs or infinities,
e04xaf/e04xaa is likely to produce unexpected results.
- 7: – IntegerInput
-
On entry: the first dimension of the array
h as declared in the (sub)program from which
e04xaf/e04xaa is called.
Constraint:
.
- 8: – Real (Kind=nag_wp) arrayInput/Output
-
On entry: the initial trial interval for computing the appropriate partial derivative to the
th variable.
If
, the initial trial interval is computed by
e04xaf/e04xaa (see
Section 3).
On exit: is the best interval found for computing a forward-difference approximation to the appropriate partial derivative for the th variable.
- 9: – Real (Kind=nag_wp)Output
-
On exit: the value of the objective function evaluated at the input vector in
x.
- 10: – Real (Kind=nag_wp) arrayOutput
-
On exit: if
or
,
contains the best estimate of the first partial derivative for the
th variable.
If
,
contains the first partial derivative for the
th variable evaluated at the input vector in
x.
- 11: – Real (Kind=nag_wp) arrayOutput
-
On exit: is the best interval found for computing a central-difference approximation to the appropriate partial derivative for the th variable.
- 12: – Real (Kind=nag_wp) arrayOutput
-
Note: the second dimension of the array
h
must be at least
if
and at least
if
or
.
On exit: if
, the estimated Hessian diagonal elements are contained in the first column of this array.
If or , the estimated Hessian matrix is contained in the leading by part of this array.
- 13: – IntegerOutput
-
On exit:
on successful exit.
If the value of
epsrf on entry is too small or too large then
iwarn is set to
or
respectively on exit and the default value for
epsrf is used within
e04xaf/e04xaa.
If
then warnings will be printed if
epsrf is too small or too large.
- 14: – Real (Kind=nag_wp) arrayWorkspace
-
Note: the dimension of the array
work
must be at least
if
and at least
if
or
.
- 15: – Integer arrayUser Workspace
- 16: – Real (Kind=nag_wp) arrayUser Workspace
-
iuser and
ruser are not used by
e04xaf/e04xaa, but are passed directly to
objfun and may be used to pass information to this routine.
- 17: – Integer arrayOutput
-
Note: see the argument description for
info above.
- 18: – IntegerInput/Output
-
Note: for e04xaa, ifail does not occur in this position in the argument list. See the additional arguments described below.
On entry:
ifail must be set to
,
. If you are unfamiliar with this argument you should refer to
Section 3.4 in How to Use the NAG Library and its Documentation for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, if you are not familiar with this argument, the recommended value is
.
When the value is used it is essential to test the value of ifail on exit.
On exit:
unless the routine detects an error or a warning has been flagged (see
Section 6).
- Note: the following are additional arguments for specific use with e04xaa. Users of e04xaf therefore need not read the remainder of this description.
- 18: – Logical arrayCommunication Array
- 19: – Integer arrayCommunication Array
- 20: – Real (Kind=nag_wp) arrayCommunication Array
-
These arguments are no longer required by e04xaf/e04xaa.
- 21: – IntegerInput/Output
-
Note: see the argument description for
ifail above.
6
Error Indicators and Warnings
On exit from
e04xaf/e04xaa both diagnostic arguments
info and
ifail should be tested.
ifail represents an overall diagnostic indicator, whereas the integer array
info represents diagnostic information on each variable.
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
x04aaf).
Errors or warnings detected by the routine:
-
A negative value of
ifail indicates an exit from
e04xaf/e04xaa because you set
mode negative in
objfun. The value of
ifail will be the same as your setting of
mode.
-
On entry, one or more of the following conditions are satisfied: , is invalid.
-
One or more variables have a nonzero
info value. This may not necessarily represent an unsuccessful exit – see diagnostic information on
info.
An unexpected error has been triggered by this routine. Please
contact
NAG.
See
Section 3.9 in How to Use the NAG Library and its Documentation for further information.
Your licence key may have expired or may not have been installed correctly.
See
Section 3.8 in How to Use the NAG Library and its Documentation for further information.
Dynamic memory allocation failed.
See
Section 3.7 in How to Use the NAG Library and its Documentation for further information.
Diagnostic information returned via
info is as follows:
-
The appropriate function appears to be constant.
is set to the initial trial interval value (see
Section 3) corresponding to a well-scaled problem and
Error est. in the printed output is set to zero. This value occurs when the estimated relative condition error in the first derivative approximation is unacceptably large for every value of the finite difference interval. If this happens when the function is not constant the initial interval may be too small; in this case, it may be worthwhile to rerun
e04xaf/e04xaa with larger initial trial interval values supplied in
hforw (see
Section 3). This error may also occur if the function evaluation includes an inordinately large constant term or if
epsrf is too large.
-
The appropriate function appears to be linear or odd.
is set to the smallest interval with acceptable bounds on the relative condition error in the forward- and backward-difference estimates. In this case, the estimated relative condition error in the second derivative approximation remained large for every trial interval, but the estimated error in the first derivative approximation was acceptable for at least one interval. If the function is not linear or odd the relative condition error in the second derivative may be decreasing very slowly, it may be worthwhile to rerun
e04xaf/e04xaa with larger initial trial interval values supplied in
hforw (see
Section 3).
-
The second derivative of the appropriate function appears to be so large that it cannot be reliably estimated (i.e., near a singularity). is set to the smallest trial interval.
This value occurs when the relative condition error estimate in the second derivative remained very small for every trial interval.
If the second derivative is not large the relative condition error in the second derivative may be increasing very slowly. It may be worthwhile to rerun
e04xaf/e04xaa with smaller initial trial interval values supplied in
hforw (see
Section 3). This error may also occur when the given value of
epsrf is not a good estimate of a bound on the absolute error in the appropriate function (i.e.,
epsrf is too small).
-
The algorithm terminated with an apparently acceptable estimate of the second derivative. However the forward-difference estimates of the appropriate first derivatives (computed with the final estimate of the ‘optimal’ forward-difference interval) and the central difference estimates (computed with the interval used to compute the final estimate of the second derivative) do not agree to half a decimal place. The usual reason that the forward- and central-difference estimates fail to agree is that the first derivative is small.
If the first derivative is not small, it may be helpful to execute the procedure at a different point.
7
Accuracy
If on exit the algorithm terminated successfully, i.e., the forward-difference estimates of the appropriate first derivatives (computed with the final estimate of the ‘optimal’ forward-difference interval ) and the central-difference estimates (computed with the interval used to compute the final estimate of the second derivative) agree to at least half a decimal place.
In short word length implementations when computing the full Hessian matrix given function values only (i.e., ) the elements of the computed Hessian will have at best to figures of accuracy.
8
Parallelism and Performance
e04xaf/e04xaa is not threaded in any implementation.
To evaluate an acceptable set of finite difference intervals for a well-scaled problem, the routine will require around two function evaluations per variable; in a badly scaled problem however, as many as six function evaluations per variable may be needed.
If you request the full Hessian matrix supplying both function and gradients (i.e.,
) or function only (i.e.,
) then a further
n or
function evaluations respectively are required.
9.1
Description of the Printed Output
The following is a description of the printed output from
e04xaf/e04xaa as controlled by the argument
msglvl.
Output when
is as follows:
J |
number of variable for which the difference interval has been computed. |
|
th variable of as set by you. |
F. dif. int. |
the best interval found for computing a forward-difference approximation to the appropriate partial derivative with respect to the th variable. |
C. dif. int. |
the best interval found for computing a central-difference approximation to the appropriate partial derivative with respect to the th variable. |
Error est. |
a bound on the estimated error in the final forward-difference approximation. When , Error est. is set to zero. |
Grad. est. |
best estimate of the first partial derivative with respect to the th variable. |
Hess diag est. |
best estimate of the second partial derivative with respect to the th variable. |
fun evals. |
the number of function evaluations used to compute the final difference intervals for the th variable. |
|
the value of info for the th variable. |
10
Example
This example computes the gradient vector and the Hessian matrix of the following function:
at the point
.
10.1
Program Text
Note: the following programs illustrate the use of e04xaf and e04xaa.
Program Text (e04xafe.f90)
Program Text (e04xaae.f90)
10.2
Program Data
None.
10.3
Program Results
Program Results (e04xafe.r)
Program Results (e04xaae.r)