PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_sparseig_real_iter (f12ab)
Purpose
nag_sparseig_real_iter (f12ab) is an iterative solver used to find some of the eigenvalues (and optionally the corresponding eigenvectors) of a standard or generalized eigenvalue problem defined by real nonsymmetric matrices. This is part of a suite of functions that also includes
nag_sparseig_real_init (f12aa),
nag_sparseig_real_proc (f12ac),
nag_sparseig_real_option (f12ad) and
nag_sparseig_real_monit (f12ae). It is
Syntax
[
irevcm,
resid,
v,
x,
mx,
nshift,
comm,
icomm,
ifail] = f12ab(
irevcm,
resid,
v,
x,
mx,
comm,
icomm)
[
irevcm,
resid,
v,
x,
mx,
nshift,
comm,
icomm,
ifail] = nag_sparseig_real_iter(
irevcm,
resid,
v,
x,
mx,
comm,
icomm)
Description
The suite of functions is designed to calculate some of the eigenvalues, , (and optionally the corresponding eigenvectors, ) of a standard eigenvalue problem , or of a generalized eigenvalue problem of order , where is large and the coefficient matrices and are sparse, real and nonsymmetric. The suite can also be used to find selected eigenvalues/eigenvectors of smaller scale dense, real and nonsymmetric problems.
nag_sparseig_real_iter (f12ab) is a
reverse communication function, based on the ARPACK routine
dnaupd, using the Implicitly Restarted Arnoldi iteration method. The method is described in
Lehoucq and Sorensen (1996) and
Lehoucq (2001) while its use within the ARPACK software is described in great detail in
Lehoucq et al. (1998). An evaluation of software for computing eigenvalues of sparse nonsymmetric matrices is provided in
Lehoucq and Scott (1996). This suite of functions offers the same functionality as the ARPACK software for real nonsymmetric problems, but the interface design is quite different in order to make the option setting clearer and to simplify the interface of
nag_sparseig_real_iter (f12ab).
The setup function
nag_sparseig_real_init (f12aa) must be called before
nag_sparseig_real_iter (f12ab), the reverse communication iterative solver. Options may be set for
nag_sparseig_real_iter (f12ab) by prior calls to the option setting function
nag_sparseig_real_option (f12ad) and a post-processing function
nag_sparseig_real_proc (f12ac) must be called following a successful final exit from
nag_sparseig_real_iter (f12ab).
nag_sparseig_real_monit (f12ae), may be called following certain flagged, intermediate exits from
nag_sparseig_real_iter (f12ab) to provide additional monitoring information about the computation.
nag_sparseig_real_iter (f12ab) uses
reverse communication, i.e., it returns repeatedly to the calling program with the argument
irevcm (see
Arguments) set to specified values which require the calling program to carry out one of the following tasks:
- – compute the matrix-vector product , where is defined by the computational mode;
- – compute the matrix-vector product ;
- – notify the completion of the computation;
- – allow the calling program to monitor the solution.
The problem type to be solved (standard or generalized), the spectrum of eigenvalues of interest, the mode used (regular, regular inverse, shifted inverse, shifted real or shifted imaginary) and other options can all be set using the option setting function
nag_sparseig_real_option (f12ad) (see
Description of the s in
nag_sparseig_real_option (f12ad) for details on setting options and of the default settings).
References
Lehoucq R B (2001) Implicitly restarted Arnoldi methods and subspace iteration SIAM Journal on Matrix Analysis and Applications 23 551–562
Lehoucq R B and Scott J A (1996) An evaluation of software for computing eigenvalues of sparse nonsymmetric matrices Preprint MCS-P547-1195 Argonne National Laboratory
Lehoucq R B and Sorensen D C (1996) Deflation techniques for an implicitly restarted Arnoldi iteration SIAM Journal on Matrix Analysis and Applications 17 789–821
Lehoucq R B, Sorensen D C and Yang C (1998) ARPACK Users' Guide: Solution of Large-scale Eigenvalue Problems with Implicitly Restarted Arnoldi Methods SIAM, Philidelphia
Parameters
Note: this function uses
reverse communication. Its use involves an initial entry, intermediate exits and re-entries, and a final exit, as indicated by the argument
irevcm. Between intermediate exits and re-entries,
all arguments other than x, mx and comm must remain unchanged.
Compulsory Input Parameters
- 1:
– int64int32nag_int scalar
-
On initial entry: , otherwise an error condition will be raised.
On intermediate re-entry: must be unchanged from its previous exit value. Changing
irevcm to any other value between calls will result in an error.
Constraint:
on initial entry,
; on re-entry
irevcm must remain unchanged.
- 2:
– double array
-
The dimension of the array
resid
must be at least
(see
nag_sparseig_real_init (f12aa))
On initial entry: need not be set unless the option
Initial Residual has been set in a prior call to
nag_sparseig_real_option (f12ad) in which case
resid should contain an initial residual vector, possibly from a previous run.
On intermediate re-entry: must be unchanged from its previous exit. Changing
resid to any other value between calls may result in an error exit.
- 3:
– double array
-
The first dimension of the array
v must be at least
.
The second dimension of the array
v must be at least
.
On initial entry: need not be set.
On intermediate re-entry: must be unchanged from its previous exit.
- 4:
– double array
-
The dimension of the array
x
must be at least
(see
nag_sparseig_real_init (f12aa))
On initial entry: need not be set, it is used as a convenient mechanism for accessing elements of
comm.
On intermediate re-entry: if
,
x need not be set.
If
,
x must contain the result of
when
irevcm returns the value
or
. It must return the real parts of the computed shifts when
irevcm returns the value
.
- 5:
– double array
-
The dimension of the array
mx
must be at least
(see
nag_sparseig_real_init (f12aa))
On initial entry: need not be set, it is used as a convenient mechanism for accessing elements of
comm.
On intermediate re-entry: if
,
mx need not be set.
If
,
mx must contain the result of
when
irevcm returns the value
. It must return the imaginary parts of the computed shifts when
irevcm returns the value
.
- 6:
– double array
-
The dimension of the array
comm
must be at least
(see
nag_sparseig_real_init (f12aa))
On initial entry: must remain unchanged following a call to the setup function
nag_sparseig_real_init (f12aa).
- 7:
– int64int32nag_int array
-
The dimension of the array
icomm
must be at least
(see
nag_sparseig_real_init (f12aa))
On initial entry: must remain unchanged following a call to the setup function
nag_sparseig_real_init (f12aa).
Optional Input Parameters
None.
Output Parameters
- 1:
– int64int32nag_int scalar
-
On intermediate exit:
has the following meanings.
- The calling program must compute the matrix-vector product , where is stored in x (by default) or in the array comm (starting from the location given by the first element of icomm) when the option is set in a prior call to nag_sparseig_real_option (f12ad). The result is returned in x (by default) or in the array comm (starting from the location given by the second element of icomm) when the option is set.
If is not symmetric semidefinite then the precomputed values in mx should not be used (see the explanation under ).
- The calling program must compute the matrix-vector product . This is similar to the case except that the result of the matrix-vector product (as required in some computational modes) has already been computed and is available in mx (by default) or in the array comm (starting from the location given by the third element of icomm) when the option is set.
- The calling program must compute the matrix-vector product , where is stored as described in the case and is returned in the location described by the case .
This computation is requested when solving the Generalized problem using either Shifted Inverse Imaginary or Shifted Inverse Real; in these cases is used as an inner-product space and requires that be symmetric semidefinite. If neither nor is symmetric semidefinite then the problem should be reformulated in a Standard form.
- Compute the nshift real and imaginary parts of the shifts where the real parts are to be returned in the first nshift locations of the array x and the imaginary parts are to be returned in the first nshift locations of the array mx. Only complex conjugate pairs of shifts may be applied and the pairs must be placed in consecutive locations. This value of irevcm will only arise if the optional parameter Supplied Shifts is set in a prior call to nag_sparseig_real_option (f12ad) which is intended for experienced users only; the default and recommended option is to use exact shifts (see Lehoucq et al. (1998) for details).
- Monitoring step: a call to nag_sparseig_real_monit (f12ae) can now be made to return the number of Arnoldi iterations, the number of converged Ritz values, their real and imaginary parts, and the corresponding Ritz estimates.
On final exit:
:
nag_sparseig_real_iter (f12ab) has completed its tasks. The value of
ifail determines whether the iteration has been successfully completed, or whether errors have been detected. On successful completion
nag_sparseig_real_proc (f12ac) must be called to return the requested eigenvalues and eigenvectors (and/or Schur vectors).
- 2:
– double array
-
The dimension of the array
resid will be
(see
nag_sparseig_real_init (f12aa))
On intermediate exit:
contains the current residual vector.
On final exit: contains the final residual vector.
- 3:
– double array
-
The first dimension of the array
v will be
.
The second dimension of the array
v will be
.
On intermediate exit:
contains the current set of Arnoldi basis vectors.
On final exit: contains the final set of Arnoldi basis vectors.
- 4:
– double array
-
The dimension of the array
x will be
(see
nag_sparseig_real_init (f12aa))
On intermediate exit:
if
,
x is not referenced.
If
,
x contains the vector
when
irevcm returns the value
or
.
On final exit: does not contain useful data.
- 5:
– double array
-
The dimension of the array
mx will be
(see
nag_sparseig_real_init (f12aa))
On intermediate exit:
if
,
mx is not referenced.
If
,
mx contains the vector
when
irevcm returns the value
.
On final exit: does not contain any useful data.
- 6:
– int64int32nag_int scalar
-
On intermediate exit:
if the option
Supplied Shifts is set and
irevcm returns a value of
,
nshift returns the number of complex shifts required.
- 7:
– double array
-
The dimension of the array
comm will be
(see
nag_sparseig_real_init (f12aa))
Contains data defining the current state of the iterative process.
- 8:
– int64int32nag_int array
-
The dimension of the array
icomm will be
(see
nag_sparseig_real_init (f12aa))
Contains data defining the current state of the iterative process.
- 9:
– int64int32nag_int scalar
On final exit:
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.
-
-
On initial entry, the maximum number of iterations
, the option
Iteration Limit has been set to a non-positive value.
-
-
The options
Generalized and
Regular are incompatible.
-
-
The option
Initial Residual was selected but the starting vector held in
resid is zero.
- W
-
The maximum number of iterations has been reached. Some Ritz values may have converged; a subsequent call to
nag_sparseig_real_proc (f12ac) will return the number of converged values and the converged values.
-
-
No shifts could be applied during a cycle of the implicitly restarted Arnoldi iteration. One possibility is to increase the size of
ncv relative to
nev (see
Arguments in
nag_sparseig_real_init (f12aa) for details of these arguments).
-
-
Could not build an Arnoldi factorization. Consider changing
ncv or
nev in the initialization function (see
Arguments in
nag_sparseig_real_init (f12aa) for details of these arguments).
-
-
Unexpected error in internal call to compute eigenvalues and corresponding error bounds of the current upper Hessenberg matrix. Please contact
NAG.
-
-
Either the initialization function
nag_sparseig_real_init (f12aa) has not been called prior to the first call of this function or a communication array has become corrupted.
-
-
An unexpected error has occurred. Please contact
NAG.
-
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
The relative accuracy of a Ritz value,
, is considered acceptable if its Ritz estimate
. The default
Tolerance used is the
machine precision given by
nag_machine_precision (x02aj).
Further Comments
None.
Example
This example solves in shift-invert mode, where is obtained from the standard central difference discretization of the convection-diffusion operator on the unit square, with zero Dirichlet boundary conditions. The shift used is a real number.
Open in the MATLAB editor:
f12ab_example
function f12ab_example
fprintf('f12ab example results\n\n');
load('west0479.mat')
S = west0479;
[irow,icol,a] = find(S);
n = int64(size(S,1));
sigma = 100;
C = S - sigma*eye(n);
C = inv(C);
nev = int64(10);
ncv = int64(30);
irevcm = int64(0);
resid = zeros(n,1);
v = zeros(n, ncv);
x = zeros(n, 1);
mx = zeros(n);
[icomm, comm, ifail] = f12aa( ...
n, nev, ncv);
[icomm, comm, ifail] = f12ad( ...
'Shifted Inverse Real', icomm, comm);
while (irevcm ~= 5)
[irevcm, resid, v, x, mx, nshift, comm, icomm, ifail] = ...
f12ab( ...
irevcm, resid, v, x, mx, comm, icomm);
if (irevcm == -1 || irevcm == 1)
x = C*x;
elseif (irevcm == 4)
[niter, nconv, ritzr, ritzi, rzest] = f12ae(icomm, comm);
if (niter == 1)
fprintf('\n');
end
fprintf('Iteration %2d No. converged = %d Norm of estimates = %10.2e\n', ...
niter, nconv, norm(rzest));
end
end
[nconv, dr, di, z, v, comm, icomm, ifail] = ...
f12ac( ...
sigma, 0, resid, v, comm, icomm);
fprintf('\nThe %4d Ritz values closest to %8.2f are:\n\n', size(dr,1), sigma);
fprintf('%9.3f %+9.3fi\n', [dr di]');
f12ab example results
Iteration 1 No. converged = 1 Norm of estimates = 3.31e-05
Iteration 2 No. converged = 5 Norm of estimates = 3.04e-05
Iteration 3 No. converged = 7 Norm of estimates = 2.07e-04
Iteration 4 No. converged = 7 Norm of estimates = 2.22e-04
Iteration 5 No. converged = 8 Norm of estimates = 2.43e-04
The 10 Ritz values closest to 100.00 are:
74.635 +0.000i
108.125 -54.066i
108.125 +54.066i
59.789 -43.689i
59.789 +43.689i
43.062 -39.164i
43.062 +39.164i
33.707 -17.557i
33.707 +17.557i
35.662 +0.000i
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015