PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_sparseig_real_band_solve (f12ag)
Purpose
nag_sparseig_real_band_solve (f12ag) is the main solver function in a suite of functions consisting of
nag_sparseig_real_option (f12ad),
nag_sparseig_real_band_init (f12af) and
nag_sparseig_real_band_solve (f12ag). It must be called following an initial call to
nag_sparseig_real_band_init (f12af) and following any calls to
nag_sparseig_real_option (f12ad).
nag_sparseig_real_band_solve (f12ag) returns approximations to selected eigenvalues, and (optionally) the corresponding eigenvectors, of a standard or generalized eigenvalue problem defined by real banded nonsymmetric matrices. The banded matrix must be stored using the LAPACK
storage format for real banded nonsymmetric matrices.
Syntax
[
nconv,
dr,
di,
z,
resid,
v,
comm,
icomm,
ifail] = f12ag(
kl,
ku,
ab,
mb,
sigmar,
sigmai,
resid,
comm,
icomm)
[
nconv,
dr,
di,
z,
resid,
v,
comm,
icomm,
ifail] = nag_sparseig_real_band_solve(
kl,
ku,
ab,
mb,
sigmar,
sigmai,
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 nonsymmetric.
Following a call to the initialization function
nag_sparseig_real_band_init (f12af),
nag_sparseig_real_band_solve (f12ag) 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 nonsymmetric 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 column ordered 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_band_solve (f12ag) is based on the banded driver functions
dnbdr1 to
dnbdr6 from the ARPACK package, which uses 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 banded driver software for real nonsymmetric 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_band_solve (f12ag), is a general purpose function that must be called following initialization by
nag_sparseig_real_band_init (f12af).
nag_sparseig_real_band_solve (f12ag) uses options, set either by default or explicitly by calling
nag_sparseig_real_option (f12ad), to return the converged approximations to selected eigenvalues and (optionally):
– |
the corresponding approximate eigenvectors; |
– |
an orthonormal basis for the associated approximate invariant subspace; |
– |
both. |
Please note that for
Generalized problems, the
Shifted Inverse Imaginary and
Shifted Inverse Real inverse modes are only appropriate if either
or
is symmetric semidefinite. Otherwise, if
or
is non-singular, the
Standard problem can be solved using the matrix
(say).
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 .
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 Real modes (see
nag_sparseig_real_option (f12ad)) have been selected then
sigmar must contain the real part of the shift used; otherwise
sigmar is not referenced.
Computational modes for non-Hermitian problems in the F12 Chapter Introduction describes the use of shift and inverse transformations.
- 6:
– double scalar
-
If one of the
Shifted Inverse Real modes (see
nag_sparseig_real_option (f12ad)) have been selected then
sigmai must contain the imaginary part of the shift used; otherwise
sigmai is not referenced.
Computational modes for non-Hermitian problems in the F12 Chapter Introduction describes the use of shift and inverse transformations.
- 7:
– double array
-
The dimension of the array
resid
must be at least
(see
nag_sparseig_real_band_init (f12af))
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 must contain an initial residual vector.
- 8:
– double array
-
- 9:
– int64int32nag_int array
-
Optional Input Parameters
None.
Output Parameters
- 1:
– int64int32nag_int scalar
-
The number of converged eigenvalues.
- 2:
– double array
-
The dimension of the array
dr will be
(see
nag_sparseig_real_band_init (f12af))
The first
nconv locations of the array
dr contain the real parts of the converged approximate eigenvalues. The number of eigenvalues returned may be one more than the number requested by
nev since complex values occur as conjugate pairs and the second in the pair can be returned in position
of the array.
- 3:
– double array
-
The dimension of the array
di will be
(see
nag_sparseig_real_band_init (f12af))
The first
nconv locations of the array
di contain the imaginary parts of the converged approximate eigenvalues. The number of eigenvalues returned may be one more than the number requested by
nev since complex values occur as conjugate pairs and the second in the pair can be returned in position
of the array.
- 4:
– double array
-
The second dimension of the array
z will be
.
If the default option
has been selected then
z contains the final set of eigenvectors corresponding to the eigenvalues held in
dr and
di. The complex eigenvector associated with the eigenvalue with positive imaginary part is stored in two consecutive columns. The first column holds the real part of the eigenvector and the second column holds the imaginary part. The eigenvector associated with the eigenvalue with negative imaginary part is simply the complex conjugate of the eigenvector associated with the positive imaginary part.
- 5:
– double array
-
The dimension of the array
resid will be
(see
nag_sparseig_real_band_init (f12af))
Contains the final residual vector.
- 6:
– double array
-
If the option
Vectors (see
nag_sparseig_real_option (f12ad)) has been set to Schur or Ritz 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.
- 7:
– double array
-
Contains no useful information.
- 8:
– int64int32nag_int array
-
Contains no useful information.
- 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:
-
-
On entry, .
-
-
On entry, .
-
-
On entry, .
-
-
On entry, the option
was selected, and
, but
sigmai must be nonzero for this computational mode.
-
-
.
-
-
The options
Generalized and
Regular are incompatible.
-
-
The
Initial Residual was selected but the starting vector held in
resid is zero.
-
-
Either the initialization function
nag_sparseig_real_band_init (f12af) has not been called prior to the first call of this function or a communication array has become corrupted.
-
-
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 an Arnoldi factorization. Consider changing
ncv or
nev in the initialization function (see
Arguments in
nag_sparseig_real_band_init (f12af) 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.
-
-
Unexpected error during calculation of a real Schur form: there was a failure to compute all the converged eigenvalues. Please contact
NAG.
-
-
Unexpected error: the computed Schur form could not be reordered by an internal call. Please contact
NAG.
-
-
Unexpected error in internal call while calculating eigenvectors. 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.
-
-
Failure during internal factorization of complex banded matrix. Please contact
NAG.
-
-
Failure during internal solution of complex banded system. Please contact
NAG.
-
-
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 Arnoldi iteration. One possibility is to increase the size of
ncv relative to
nev (see
Arguments in
nag_sparseig_real_band_init (f12af) for details of these arguments).
-
-
Overflow occurred during transformation of Ritz values to those of the original problem.
-
-
The function was unable to dynamically allocate sufficient internal workspace. Please contact
NAG.
-
-
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 constructs the matrices and using LAPACK band storage format and solves in shifted imaginary mode using the complex shift .
Open in the MATLAB editor:
f12ag_example
function f12ag_example
fprintf('f12ag example results\n\n');
nx = int64(10);
n = nx*nx;
nev = int64(4);
ncv = nx;
kl = nx;
ku = nx;
ab = zeros(2*kl+ku+1,n);
mb = zeros(2*kl+ku+1,n);
idiag = kl + ku + 1;
for j=1:n
ab(idiag,j) = 4;
mb(idiag,j) = 4;
end
isup = kl + ku;
isub = kl + ku + 2;
rho = 100;
h = 1/double(nx+1);
for i=1:nx
lo = (i-1)*nx;
for j=lo+1:lo+nx-1
ab(isub,j+1) = -1 + 0.5*h*rho;
ab(isup,j) = -1 - 0.5*h*rho;
end
end
for j = 1:n - 1
mb(isub,j+1) = 1;
mb(isup,j) = 1;
end
isup = kl + 1;
isub = 2*kl + ku + 1;
for i = 1:nx - 1
lo = (i-1)*nx;
for j = lo + 1:lo + nx
ab(isup,nx+j) = -1;
ab(isub,j) = -1;
end
end
sigmar = 0.4;
sigmai = 0.6;
resid = zeros(100,1);
[icomm, comm, ifail] = f12af( ...
n, nev, ncv);
[icomm, comm, ifail] = f12ad( ...
'Shifted imaginary', icomm, comm);
[icomm, comm, ifail] = f12ad( ...
'Generalized', icomm, comm);
[nconv, dr, di, z, resid, v, comm, icomm, ifail] = ...
f12ag( ...
kl, ku, ab, mb, sigmar, sigmai, resid, comm, icomm);
fprintf('The %4d Ritz values closest to %8.2f %+8.2fi are:\n\n', ...
nconv, sigmar, sigmai);
fprintf('%9.4f %+9.4fi\n', [dr(1:nconv) di(1:nconv)]');
f12ag example results
The 4 Ritz values closest to 0.40 +0.60i are:
0.3610 +0.7223i
0.3610 -0.7223i
0.4598 -0.7199i
0.4598 +0.7199i
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015