PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_roots_sparsys_func_expert (c05qs)
Purpose
nag_roots_sparsys_func_expert (c05qs) is an easy-to-use function that finds a solution of a sparse system of nonlinear equations by a modification of the Powell hybrid method.
Syntax
[
x,
fvec,
rcomm,
icomm,
user,
ifail] = c05qs(
fcn,
x,
init,
rcomm,
icomm, 'n',
n, 'xtol',
xtol, 'lrcomm',
lrcomm, 'licomm',
licomm, 'user',
user)
[
x,
fvec,
rcomm,
icomm,
user,
ifail] = nag_roots_sparsys_func_expert(
fcn,
x,
init,
rcomm,
icomm, 'n',
n, 'xtol',
xtol, 'lrcomm',
lrcomm, 'licomm',
licomm, 'user',
user)
Description
The system of equations is defined as:
nag_roots_sparsys_func_expert (c05qs) is based on the MINPACK routine HYBRD1 (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 sparse rank-1 method of Schubert (see
Schubert (1970)). At the starting point, the sparsity pattern is determined and the Jacobian is approximated by forward differences, but these are not used again until the rank-1 method fails to produce satisfactory progress. Then, the sparsity structure is used to recompute an approximation to the Jacobian by forward differences with the least number of function evaluations. The function you supply must be able to compute only the requested subset of the function values. The sparse Jacobian linear system is solved at each iteration with
nag_sparse_direct_real_gen_lu (f11me) computing the Newton step. For more details see
Powell (1970) and
Broyden (1965).
References
Broyden C G (1965) A class of methods for solving nonlinear simultaneous equations Mathematics of Computation 19(92) 577–593
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
Schubert L K (1970) Modification of a quasi-Newton method for nonlinear equations with a sparse Jacobian Mathematics of Computation 24(109) 27–30
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
.
[fvec, user, iflag] = fcn(n, lindf, indf, x, user, iflag)
Input Parameters
- 1:
– int64int32nag_int scalar
-
, the number of equations.
- 2:
– int64int32nag_int scalar
-
lindf specifies the number of indices
for which values of
must be computed.
- 3:
– int64int32nag_int array
-
indf specifies the indices
for which values of
must be computed. The indices are specified in strictly ascending order.
- 4:
– double array
-
The components of the point at which the functions must be evaluated. contains the coordinate .
- 5:
– Any MATLAB object
fcn is called from
nag_roots_sparsys_func_expert (c05qs) with the object supplied to
nag_roots_sparsys_func_expert (c05qs).
- 6:
– int64int32nag_int scalar
-
.
Output Parameters
- 1:
– double array
-
must contain the function values
, for all indices
in
indf.
- 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. must contain the coordinate .
- 3:
– logical scalar
-
init must be set to
true to indicate that this is the first time
nag_roots_sparsys_func_expert (c05qs) is called for this specific problem.
nag_roots_sparsys_func_expert (c05qs) then computes the dense Jacobian and detects and stores its sparsity pattern (in
rcomm and
icomm) before proceeding with the iterations. This is noticeably time consuming when
n is large. If not enough storage has been provided for
rcomm or
icomm,
nag_roots_sparsys_func_expert (c05qs) will fail. On exit with
,
,
or
,
contains
, the number of nonzero entries found in the Jacobian. On subsequent calls,
init can be set to
false if the problem has a Jacobian of the same sparsity pattern. In that case, the computation time required for the detection of the sparsity pattern will be smaller.
- 4:
– double array
-
rcomm must not be altered between successive calls to
nag_roots_sparsys_func_expert (c05qs).
- 5:
– int64int32nag_int array
-
If , , or on exit, contains where is the number of nonzero entries in the Jacobian.
icomm must not be altered between successive calls to
nag_roots_sparsys_func_expert (c05qs).
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the dimension of the array
x.
, 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 dimension of the array
rcomm.
The dimension of the array
rcomm.
Constraint:
where is the number of nonzero entries in the Jacobian, as computed by nag_roots_sparsys_func_expert (c05qs).
- 4:
– int64int32nag_int scalar
-
Default:
the dimension of the array
icomm.
The dimension of the array
icomm.
Constraint:
where is the number of nonzero entries in the Jacobian, as computed by nag_roots_sparsys_func_expert (c05qs).
- 5:
– Any MATLAB object
user is not used by
nag_roots_sparsys_func_expert (c05qs), 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.
contains the function values
.
- 3:
– double array
-
- 4:
– int64int32nag_int array
-
icomm must not be altered between successive calls to
nag_roots_sparsys_func_expert (c05qs).
- 5:
– Any MATLAB object
- 6:
– 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
calls to
fcn. Consider setting
and restarting the calculation from the point held in
x.
- W
-
No further improvement in the solution is possible.
- W
-
The iteration is not making good progress.
- W
-
iflag was set negative in
fcn.
-
-
-
-
-
-
An internal error has occurred. Code
-
-
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
If
is the true solution,
nag_roots_sparsys_func_expert (c05qs) 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_sparsys_func_expert (c05qs) 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_sparsys_func_expert (c05qs) may incorrectly indicate convergence. The validity of the answer can be checked, for example, by rerunning
nag_roots_sparsys_func_expert (c05qs) with a lower value for
xtol.
Further Comments
Local workspace arrays of fixed lengths are allocated internally by nag_roots_sparsys_func_expert (c05qs). The total size of these arrays amounts to double elements and integer elements where the integer is bounded by and and depends on the sparsity pattern of the Jacobian.
The time required by nag_roots_sparsys_func_expert (c05qs) 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_sparsys_func_expert (c05qs) to process each evaluation of the functions depends on the number of nonzero entries in the Jacobian. The timing of nag_roots_sparsys_func_expert (c05qs) is strongly influenced by the time spent evaluating the functions.
When
init is
true, the dense Jacobian is first evaluated and that will take time proportional to
.
Ideally the problem should be scaled so that, at the solution, the function values are of comparable magnitude.
Example
This example determines the values
which satisfy the tridiagonal equations:
It then perturbs the equations by a small amount and solves the new system.
Open in the MATLAB editor:
c05qs_example
function c05qs_example
fprintf('c05qs example results\n\n');
x = -ones(9, 1);
rcomm = zeros(39, 1);
icomm = zeros(118, 1, 'int64');
for i=0:1
user = i;
init = (i==0);
[x, fvec, rcomm, icomm, user, ifail] = ...
c05qs(@fcn, x, init, rcomm, icomm,'user', user);
switch ifail
case {0}
fprintf('\nFinal 2-norm of the residuals = %12.4e\n', norm(fvec));
fprintf('\nFinal approximate solution\n');
disp(x);
case {2, 3, 4}
fprintf('\nApproximate solution\n');
disp(x);
end
end
function [fvec, user, iflag] = fcn(n, lindf, indf, x, user, iflag)
fvec = zeros(n, 1);
ind = 1;
iflag = int64(0);
alpha = (1/2)^7;
theta = user*alpha;
for i = 1:double(n)
if indf(ind) ~= i
continue;
end
fvec(i) = (3-(2+theta)*x(i))*x(i) + 1;
if (i > 1)
fvec(i) = fvec(i) - x(i-1);
end
if (i < n)
fvec(i) = fvec(i) - 2*x(i+1);
end
ind = ind + 1;
if (ind > lindf)
break;
end
end
c05qs example results
Final 2-norm of the residuals = 1.7592e-09
Final approximate solution
-0.5707
-0.6816
-0.7017
-0.7042
-0.7014
-0.6919
-0.6658
-0.5960
-0.4164
Final 2-norm of the residuals = 2.6329e-13
Final approximate solution
-0.5697
-0.6804
-0.7004
-0.7029
-0.7000
-0.6906
-0.6646
-0.5951
-0.4159
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015