PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_roots_sys_deriv_check (c05zd)
Purpose
nag_roots_sys_deriv_check (c05zd) checks the user-supplied gradients of a set of nonlinear functions in several variables, for consistency with the functions themselves. The function must be called twice.
Syntax
[
xp,
err,
ifail] = c05zd(
mode,
x,
fvec,
fjac,
fvecp, 'm',
m, 'n',
n)
[
xp,
err,
ifail] = nag_roots_sys_deriv_check(
mode,
x,
fvec,
fjac,
fvecp, 'm',
m, 'n',
n)
Description
nag_roots_sys_deriv_check (c05zd) 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
nag_roots_sys_deriv_check (c05zd) is its invariance under changes in scale of the variables or functions.
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
Parameters
Compulsory Input Parameters
- 1:
– int64int32nag_int scalar
-
The value on the first call and the value on the second call of nag_roots_sys_deriv_check (c05zd).
Constraint:
or .
- 2:
– double array
-
The components of a point
, at which the consistency check is to be made. (See
Accuracy.)
- 3:
– double array
-
If
,
fvec must contain the value of the functions evaluated at
. If
,
fvec is not referenced.
- 4:
– double array
-
If
,
fjac must contain the value of
at the point
, for
and
. If
,
fjac is not referenced.
- 5:
– double array
-
If
,
fvecp must contain the value of the functions evaluated at
xp (as output by a preceding call to
nag_roots_sys_deriv_check (c05zd) with
). If
,
fvecp is not referenced.
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the dimension of the arrays
fvec,
fvecp and the first dimension of the array
fjac. (An error is raised if these dimensions are not equal.)
, the number of functions.
Constraint:
.
- 2:
– int64int32nag_int scalar
-
Default:
the dimension of the array
x and the second dimension of the array
fjac. (An error is raised if these dimensions are not equal.)
Constraint:
.
Output Parameters
- 1:
– double array
-
If
,
xp is set to a point neighbouring
x. If
,
xp is undefined.
- 2:
– double array
-
If
,
err contains measures of correctness of the respective gradients. If
,
err is undefined. If there is no loss of significance (see
Accuracy), 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.
- 3:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
Error Indicators and Warnings
Errors or warnings detected by the function:
-
-
Constraint: or .
-
-
Constraint: .
-
-
Constraint: .
-
An unexpected error has been triggered by this routine. Please
contact
NAG.
-
Your licence key may have expired or may not have been installed correctly.
-
Dynamic memory allocation failed.
Accuracy
nag_roots_sys_deriv_check (c05zd) 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
nag_machine_precision (x02aj).
Further Comments
The time required by
nag_roots_sys_deriv_check (c05zd) increases with
m and
n.
Example
This example checks the Jacobian matrix for a problem with functions of variables (sometimes referred to as the Bard problem).
Open in the MATLAB editor:
c05zd_example
function c05zd_example
fprintf('c05zd example results\n\n');
x = [0.92, 0.13, 0.54];
fvec = zeros(15, 1);
fjac = zeros(15, 3);
fvecp = zeros(15, 1);
y = 0.01*[14, 18, 22, 25, 29, 32, 35, 39, 47, 58, 73, 96, 134, 210, 439];
[xp, err, ifail] = c05zd(int64(1), x, fvec, fjac, fvecp);
for i=1:15
u = i;
v = 16 - i;
w = min(u, v);
fvec(i) = y(i) - (x(1)+u/(v*x(2)+w*x(3)));
fvecp(i) = y(i) - (xp(1)+u/(v*xp(2)+w*xp(3)));
denom = (v*x(2)+w*x(3))^(-2);
fjac(i,:) = [-1, u*v*denom, u*w*denom];
end
[xp, err, ifail] = c05zd(int64(2), x, fvec, fjac, fvecp);
fprintf('\nAt point %12.4f %12.4f %12.4f\n', x);
if any(err <= 0.5)
for i=1:15
if err(i) <= 0.5
fprintf('Suspicious gradient number %d with error measure %12.4f\n', ...
i, err(i));
end
end
else
fprintf('Gradients appear correct\n');
end
c05zd example results
At point 0.9200 0.1300 0.5400
Gradients appear correct
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015