PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_roots_sys_func_expert (c05qc)
Purpose
nag_roots_sys_func_expert (c05qc) is a comprehensive function that finds a solution of a system of nonlinear equations by a modification of the Powell hybrid method.
Syntax
[
x,
fvec,
diag,
nfev,
fjac,
r,
qtf,
user,
ifail] = c05qc(
fcn,
x,
ml,
mu,
mode,
diag,
nprint, 'n',
n, 'xtol',
xtol, 'maxfev',
maxfev, 'epsfcn',
epsfcn, 'factor',
factor, 'user',
user)
[
x,
fvec,
diag,
nfev,
fjac,
r,
qtf,
user,
ifail] = nag_roots_sys_func_expert(
fcn,
x,
ml,
mu,
mode,
diag,
nprint, 'n',
n, 'xtol',
xtol, 'maxfev',
maxfev, 'epsfcn',
epsfcn, 'factor',
factor, 'user',
user)
Description
The system of equations is defined as:
nag_roots_sys_func_expert (c05qc) is based on the MINPACK routine HYBRD (see
Moré et al. (1980)). It chooses the correction at each step as a convex combination of the Newton and scaled gradient directions. The Jacobian is updated by the rank-1 method of Broyden. At the starting point, the Jacobian is approximated by forward differences, but these are not used again until the rank-1 method fails to produce satisfactory progress. For more details see
Powell (1970).
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
Powell M J D (1970) A hybrid method for nonlinear algebraic equations Numerical Methods for Nonlinear Algebraic Equations (ed P Rabinowitz) Gordon and Breach
Parameters
Compulsory Input Parameters
- 1:
– function handle or string containing name of m-file
-
fcn must return the values of the functions
at a point
, unless
on entry to
nag_roots_sys_func_expert (c05qc).
[fvec, user, iflag] = fcn(n, x, fvec, user, iflag)
Input Parameters
- 1:
– int64int32nag_int scalar
-
, the number of equations.
- 2:
– double array
-
The components of the point at which the functions must be evaluated.
- 3:
– double array
-
If
,
fvec contains the function values
and must not be changed.
- 4:
– Any MATLAB object
fcn is called from
nag_roots_sys_func_expert (c05qc) with the object supplied to
nag_roots_sys_func_expert (c05qc).
- 5:
– int64int32nag_int scalar
-
.
- x and fvec are available for printing (see nprint).
- fvec must be updated.
Output Parameters
- 1:
– double array
-
If
on entry,
fvec must contain the function values
(unless
iflag is set to a negative value by
fcn).
- 2:
– Any MATLAB object
- 3:
– int64int32nag_int scalar
-
In general,
iflag should not be reset by
fcn. If, however, you wish to terminate execution (perhaps because some illegal point
x has been reached), then
iflag should be set to a negative integer.
- 2:
– double array
-
An initial guess at the solution vector.
- 3:
– int64int32nag_int scalar
-
The number of subdiagonals within the band of the Jacobian matrix. (If the Jacobian is not banded, or you are unsure, set .)
Constraint:
.
- 4:
– int64int32nag_int scalar
-
The number of superdiagonals within the band of the Jacobian matrix. (If the Jacobian is not banded, or you are unsure, set .)
Constraint:
.
- 5:
– int64int32nag_int scalar
-
Indicates whether or not you have provided scaling factors in
diag.
If
the scaling must have been specified in
diag.
Otherwise, if , the variables will be scaled internally.
Constraint:
or .
- 6:
– double array
-
If
,
diag must contain multiplicative scale factors for the variables.
If
,
diag need not be set.
Constraint:
if , , for .
- 7:
– int64int32nag_int scalar
-
Indicates whether (and how often) special calls to
fcn, with
iflag set to
, are to be made for printing purposes.
- No calls are made.
- fcn is called at the beginning of the first iteration, every nprint iterations thereafter and immediately before the return from nag_roots_sys_func_expert (c05qc).
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the dimension of the arrays
x,
diag. (An error is raised if these dimensions are not equal.)
, the number of equations.
Constraint:
.
- 2:
– double scalar
Suggested value:
, where
is the
machine precision returned by
nag_machine_precision (x02aj).
Default:
The accuracy in
x to which the solution is required.
Constraint:
.
- 3:
– int64int32nag_int scalar
Default:
The maximum number of calls to
fcn with
.
nag_roots_sys_func_expert (c05qc) will exit with
, if, at the end of an iteration, the number of calls to
fcn exceeds
maxfev.
Constraint:
.
- 4:
– double scalar
Default:
A rough estimate of the largest relative error in the functions. It is used in determining a suitable step for a forward difference approximation to the Jacobian. If
epsfcn is less than
machine precision (returned by
nag_machine_precision (x02aj)) then
machine precision is used. Consequently a value of
will often be suitable.
- 5:
– double scalar
Default:
A quantity to be used in determining the initial step bound. In most cases,
factor should lie between
and
. (The step bound is
if this is nonzero; otherwise the bound is
factor.)
Constraint:
.
- 6:
– Any MATLAB object
user is not used by
nag_roots_sys_func_expert (c05qc), but is passed to
fcn. 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:
– double array
-
The final estimate of the solution vector.
- 2:
– double array
-
The function values at the final point returned in
x.
- 3:
– double array
-
The scale factors actually used (computed internally if ).
- 4:
– int64int32nag_int scalar
-
The number of calls made to
fcn with
.
- 5:
– double array
-
The orthogonal matrix produced by the factorization of the final approximate Jacobian.
- 6:
– double array
-
The upper triangular matrix produced by the factorization of the final approximate Jacobian, stored row-wise.
- 7:
– double array
-
The vector .
- 8:
– Any MATLAB object
- 9:
– 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:
Cases prefixed with W are classified as warnings and
do not generate an error of type NAG:error_n. See nag_issue_warnings.
- W
-
There have been at least
maxfev calls to
fcn.
- W
-
No further improvement in the solution is possible.
- W
-
The iteration is not making good progress, as measured by the improvement from the last Jacobian evaluations.
- W
-
The iteration is not making good progress, as measured by the improvement from the last iterations.
- W
-
iflag was set negative in
fcn.
-
-
Constraint: .
-
-
Constraint: .
-
-
Constraint: or .
-
-
Constraint: .
-
-
On entry,
and
diag contained a non-positive element.
-
-
Constraint: .
-
-
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.
A value of
or
may indicate that the system does not have a zero, or that the solution is very close to the origin (see
Accuracy). Otherwise, rerunning
nag_roots_sys_func_expert (c05qc) from a different starting point may avoid the region of difficulty.
Accuracy
If
is the true solution and
denotes the diagonal matrix whose entries are defined by the array
diag, then
nag_roots_sys_func_expert (c05qc) tries to ensure that
If this condition is satisfied with
, then the larger components of
have
significant decimal digits. There is a danger that the smaller components of
may have large relative errors, but the fast rate of convergence of
nag_roots_sys_func_expert (c05qc) usually obviates this possibility.
If
xtol is less than
machine precision and the above test is satisfied with the
machine precision in place of
xtol, then the function exits with
.
Note: this convergence test is based purely on relative error, and may not indicate convergence if the solution is very close to the origin.
The convergence test assumes that the functions are reasonably well behaved. If this condition is not satisfied, then
nag_roots_sys_func_expert (c05qc) may incorrectly indicate convergence. The validity of the answer can be checked, for example, by rerunning
nag_roots_sys_func_expert (c05qc) with a lower value for
xtol.
Further Comments
Local workspace arrays of fixed lengths are allocated internally by nag_roots_sys_func_expert (c05qc). The total size of these arrays amounts to double elements.
The time required by nag_roots_sys_func_expert (c05qc) to solve a given problem depends on , the behaviour of the functions, the accuracy requested and the starting point. The number of arithmetic operations executed by nag_roots_sys_func_expert (c05qc) to process each evaluation of the functions is approximately . The timing of nag_roots_sys_func_expert (c05qc) is strongly influenced by the time spent evaluating the functions.
Ideally the problem should be scaled so that, at the solution, the function values are of comparable magnitude.
The number of function evaluations required to evaluate the Jacobian may be reduced if you can specify
ml and
mu accurately.
Example
This example determines the values
which satisfy the tridiagonal equations:
Open in the MATLAB editor:
c05qc_example
function c05qc_example
fprintf('c05qc example results\n\n');
ml = int64(1);
mu = int64(1);
mode = int64(2);
diag = ones(9, 1);
nprint = int64(0);
x = -ones(9, 1);
[xOut, fvec, diagOut, nfev, fjac, r, qtf, user, ifail] = ...
c05qc(@fcn, x, ml, mu, mode, diag, nprint);
switch ifail
case {0}
fprintf('\nFinal 2-norm of the residuals = %12.4e\n', norm(fvec));
fprintf('\nNumber of function evaluations = %d\n', nfev);
fprintf('\nFinal approximate solution\n');
disp(xOut);
case {2, 3, a, 54}
fprintf('\nApproximate solution\n');
disp(xOut);
end
function [fvec, user, iflag] = fcn(n, x, fvec, user, iflag)
if iflag ~= 0
fvec = zeros(n, 1);
fvec(1:n) = (3.0-2.0.*x).*x + 1.0;
fvec(2:n) = fvec(2:n) - x(1:(n-1));
fvec(1:(n-1)) = fvec(1:(n-1)) - 2.0.*x(2:n);
end
c05qc example results
Final 2-norm of the residuals = 1.1926e-08
Number of function evaluations = 14
Final approximate solution
-0.5707
-0.6816
-0.7017
-0.7042
-0.7014
-0.6919
-0.6658
-0.5960
-0.4164
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015