PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_sparseig_real_symm_band_solve (f12fg)
Purpose
nag_sparseig_real_symm_band_solve (f12fg) is the main solver function in a suite of functions which includes
nag_sparseig_real_symm_option (f12fd) and
nag_sparseig_real_symm_band_init (f12ff).
nag_sparseig_real_symm_band_solve (f12fg) must be called following an initial call to
nag_sparseig_real_symm_band_init (f12ff) and following any calls to
nag_sparseig_real_symm_option (f12fd).
nag_sparseig_real_symm_band_solve (f12fg) returns approximations to selected eigenvalues, and (optionally) the corresponding eigenvectors, of a standard or generalized eigenvalue problem defined by real banded symmetric matrices. The banded matrix must be stored using the LAPACK storage format for real banded nonsymmetric matrices.
Syntax
[
nconv,
d,
z,
resid,
v,
comm,
icomm,
ifail] = f12fg(
kl,
ku,
ab,
mb,
sigma,
resid,
comm,
icomm)
[
nconv,
d,
z,
resid,
v,
comm,
icomm,
ifail] = nag_sparseig_real_symm_band_solve(
kl,
ku,
ab,
mb,
sigma,
resid,
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 banded, real and symmetric.
Following a call to the initialization function
nag_sparseig_real_symm_band_init (f12ff),
nag_sparseig_real_symm_band_solve (f12fg) returns the converged approximations to eigenvalues and (optionally) the corresponding approximate eigenvectors and/or an orthonormal basis for the associated approximate invariant subspace. The eigenvalues (and eigenvectors) are selected from those of a standard or generalized eigenvalue problem defined by real banded symmetric matrices. There is negligible additional computational cost to obtain eigenvectors; an orthonormal basis is always computed, but there is an additional storage cost if both are requested.
The banded matrices
and
must be stored using the LAPACK storage format for banded nonsymmetric matrices; please refer to
Packed storage in the F07 Chapter Introduction for details on this storage format.
nag_sparseig_real_symm_band_solve (f12fg) is based on the banded driver functions
dsbdr1 to
dsbdr6 from the ARPACK package, which uses the Implicitly Restarted Lanczos 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). This suite of functions offers the same functionality as the ARPACK banded driver software for real symmetric problems, but the interface design is quite different in order to make the option setting clearer and to combine the different drivers into a general purpose function.
nag_sparseig_real_symm_band_solve (f12fg), is a general purpose forward communication function that must be called following initialization by
nag_sparseig_real_symm_band_init (f12ff).
nag_sparseig_real_symm_band_solve (f12fg) uses options, set either by default or explicitly by calling
nag_sparseig_real_symm_option (f12fd), to return the converged approximations to selected eigenvalues and (optionally):
– |
the corresponding approximate eigenvectors; |
– |
an orthonormal basis for the associated approximate invariant subspace; |
– |
both. |
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
Compulsory Input Parameters
- 1:
– int64int32nag_int scalar
-
The number of subdiagonals of the matrices and .
Constraint:
.
- 2:
– int64int32nag_int scalar
-
The number of superdiagonals of the matrices and . Since and are symmetric, the normal case is .
Constraint:
.
- 3:
– double array
-
The first dimension of the array
ab must be at least
.
The second dimension of the array
ab must be at least
.
Must contain the matrix
in LAPACK banded storage format for nonsymmetric matrices (see
Band storage in the F07 Chapter Introduction).
- 4:
– double array
-
The first dimension of the array
mb must be at least
.
The second dimension of the array
mb must be at least
.
Must contain the matrix
in LAPACK banded storage format for nonsymmetric matrices (see
Band storage in the F07 Chapter Introduction).
- 5:
– double scalar
-
If one of the
Shifted Inverse (see
nag_sparseig_real_symm_option (f12fd)) modes has been selected then
sigma contains the real shift used; otherwise
sigma is not referenced.
- 6:
– double array
-
The dimension of the array
resid
must be at least
(see
nag_sparseig_real_symm_band_init (f12ff))
Need not be set unless the option
Initial Residual has been set in a prior call to
nag_sparseig_real_symm_option (f12fd) in which case
resid must contain an initial residual vector.
- 7:
– double array
-
The dimension of the array
comm
must be at least
(see
nag_sparseig_real_symm_band_init (f12ff))
- 8:
– int64int32nag_int array
-
The dimension of the array
icomm
must be at least
(see
nag_sparseig_real_symm_band_init (f12ff))
Optional Input Parameters
None.
Output Parameters
- 1:
– int64int32nag_int scalar
-
The number of converged eigenvalues.
- 2:
– double array
-
The dimension of the array
d will be
(see
nag_sparseig_real_symm_band_init (f12ff))
The first
nconv locations of the array
d contain the converged approximate eigenvalues.
- 3:
– double array
-
If the default option
(see
nag_sparseig_real_symm_option (f12fd)) has been selected then
z contains the final set of eigenvectors corresponding to the eigenvalues held in
d. The real eigenvector associated with eigenvalue
, for
, is stored in the
th column of
z.
- 4:
– double array
-
Contains the final residual vector.
- 5:
– double array
-
If the option
Vectors (see
nag_sparseig_real_symm_option (f12fd)) has been set to Schur or Ritz and a separate array
z has been passed then the first
elements of
v will contain approximate Schur vectors that span the desired invariant subspace.
The
th Schur vector is stored in the
th column of
v.
- 6:
– double array
-
The dimension of the array
comm will be
(see
nag_sparseig_real_symm_band_init (f12ff))
Contains no useful information.
- 7:
– int64int32nag_int array
-
The dimension of the array
icomm will be
(see
nag_sparseig_real_symm_band_init (f12ff))
Contains no useful information.
- 8:
– 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.
-
-
On entry, .
-
-
On entry, .
-
-
On entry, .
-
-
.
-
-
The options
Generalized and
Regular are incompatible.
-
-
Eigenvalues from
Both Ends of the spectrum were requested, but only one eigenvalue (
nev) is requested.
-
-
The
Initial Residual was selected but the starting vector held in
resid is zero.
-
-
On entry, or when no vectors are required.
-
-
On entry, the option was selected, but this is not yet implemented.
-
-
The number of eigenvalues found to sufficient accuracy is zero.
-
-
Could not build a Lanczos factorization. Consider changing
ncv or
nev in the initialization function (see
Arguments in
nag_sparseig_real_symm_init (f12fa) for details of these arguments).
-
-
Unexpected error in internal call to compute eigenvalues and corresponding error bounds of the current symmetric tridiagonal matrix. Please contact
NAG.
-
-
Unexpected error during calculation of a real Schur form: there was a failure to compute all the converged eigenvalues. Please contact
NAG.
-
-
Failure during internal factorization of real banded matrix. Please contact
NAG.
-
-
Failure during internal solution of real banded system. Please contact
NAG.
- W
-
The maximum number of iterations has been reached. Some Ritz values may have converged;
nconv returns the number of converged values.
-
-
No shifts could be applied during a cycle of the implicitly restarted Lanczos iteration. One possibility is to increase the size of
ncv relative to
nev (see
Arguments in
nag_sparseig_real_symm_band_init (f12ff) for details of these arguments).
-
-
An unexpected error has occurred. Please contact
NAG.
-
-
The function was unable to dynamically allocate sufficient internal workspace. 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 regular mode, where is obtained from the standard central difference discretization of the two-dimensional convection-diffusion operator on the unit square with zero Dirichlet boundary conditions. is stored in LAPACK banded storage format.
Open in the MATLAB editor:
f12fg_example
function f12fg_example
fprintf('f12fg example results\n\n');
nx = int64(10);
n = nx^2;
nev = int64(4);
ncv = int64(10);
kl = nx;
ku = nx;
mb = zeros(2*kl+ku+1,n);
ab = zeros(2*kl+ku+1,n);
h2 = 1/double((nx+1)*(nx+1));
ab(kl+ku+1,1:n) = 4/h2;
ab(kl+ku, 1:n) = -1/h2;
ab(kl+ku+2, 1:n) = -1/h2;
ab(kl+ku, 1:nx:n) = 0;
ab(kl+ku+2,nx:nx:n) = 0;
ab(kl+1 ,nx+1:n) = -1/h2;
ab(2*kl+ku+1,1:n-nx) = -1/h2;
[icomm, comm, ifail] = f12ff( ...
n, nev, ncv);
sigma = 0;
resid = zeros(n,1);
[nconv, d, z, resid, v, comm, icomm, ifail] = ...
f12fg( ...
kl, ku, ab, mb, sigma, resid, comm, icomm);
fprintf('Largest %d Eigenvalues\n',nconv);
fprintf('%10.2f\n',d(1:nconv));
f12fg example results
Largest 4 Eigenvalues
891.17
919.78
919.78
948.39
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015