NAG Library Routine Document
C05ZDF
Note: before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.
1 Purpose
C05ZDF checks the user-supplied gradients of a set of nonlinear functions in several variables, for consistency with the functions themselves. The routine must be called twice.
2 Specification
INTEGER
MODE, M, N, IFAIL
REAL (KIND=nag_wp)
X(N), FVEC(M), FJAC(M,N), XP(N), FVECP(M), ERR(M)
3 Description
C05ZDF is based on the MINPACK routine CHKDER (see
Moré et al. (1980)). It checks the
th gradient for consistency with the
th function by computing a forward-difference approximation along a suitably chosen direction and comparing this approximation with the user-supplied gradient along the same direction. The principal characteristic of C05ZDF is its invariance under changes in scale of the variables or functions.
4 References
Moré J J, Garbow B S and Hillstrom K E (1980) User guide for MINPACK-1 Technical Report ANL-80-74 Argonne National Laboratory
5 Parameters
- 1: MODE – INTEGERInput
On entry: the value on the first call and the value on the second call of C05ZDF.
Constraint:
or .
- 2: M – INTEGERInput
On entry: , the number of functions.
Constraint:
.
- 3: N – INTEGERInput
Constraint:
.
- 4: X(N) – REAL (KIND=nag_wp) arrayInput
On entry: the components of a point
, at which the consistency check is to be made. (See
Section 7.)
- 5: FVEC(M) – REAL (KIND=nag_wp) arrayInput
On entry: if
,
FVEC must contain the value of the functions evaluated at
. If
,
FVEC is not referenced.
- 6: FJAC(M,N) – REAL (KIND=nag_wp) arrayInput
On entry: if
,
FJAC must contain the value of
at the point
, for
and
. If
,
FJAC is not referenced.
- 7: XP(N) – REAL (KIND=nag_wp) arrayOutput
On exit: if
,
XP is set to a point neighbouring
X. If
,
XP is undefined.
- 8: FVECP(M) – REAL (KIND=nag_wp) arrayInput
On entry: if
,
FVECP must contain the value of the functions evaluated at
XP (as output by a preceding call to C05ZDF with
). If
,
FVECP is not referenced.
- 9: ERR(M) – REAL (KIND=nag_wp) arrayOutput
On exit: if
,
ERR contains measures of correctness of the respective gradients. If
,
ERR is undefined. If there is no loss of significance (see
Section 7), then if
is
the
th user-supplied gradient
, for
is correct, whilst if
is
the
th gradient is incorrect. For values of
between
and
the categorisation is less certain. In general, a value of
indicates that the
th gradient is probably correct.
- 10: IFAIL – INTEGERInput/Output
-
On entry:
IFAIL must be set to
,
. If you are unfamiliar with this parameter you should refer to
Section 3.3 in the Essential Introduction 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 parameter, 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).
6 Error Indicators and Warnings
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:
On entry, or .
On entry, .
On entry, .
7 Accuracy
C05ZDF does not perform reliably if cancellation or rounding errors cause a severe loss of significance in the evaluation of a function. Therefore, none of the components of
should be unusually small (in particular, zero) or any other value which may cause loss of significance. The relative differences between corresponding elements of
FVECP and
FVEC should be at least two orders of magnitude greater than the
machine precision returned by
X02AJF.
The time required by C05ZDF increases with
M and
N.
9 Example
This example checks the Jacobian matrix for a problem with functions of variables (sometimes referred to as the Bard problem).
9.1 Program Text
Program Text (c05zdfe.f90)
9.2 Program Data
None.
9.3 Program Results
Program Results (c05zdfe.r)