NAG FL Interface
f12agf (real_​band_​solve)

Note: this routine uses optional parameters to define choices in the problem specification. If you wish to use default settings for all of the optional parameters, then the option setting routine f12adf need not be called. If, however, you wish to reset some or all of the settings please refer to Section 11 in f12adf for a detailed description of the specification of the optional parameters.
Settings help

FL Name Style:


FL Specification Language:


1 Purpose

f12agf is the main solver routine in a suite of routines consisting of f12adf, f12aff and f12agf. It must be called following an initial call to f12aff and following any calls to f12adf.
f12agf 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.

2 Specification

Fortran Interface
Subroutine f12agf ( kl, ku, ab, ldab, mb, ldmb, sigmar, sigmai, nconv, dr, di, z, ldz, resid, v, ldv, comm, icomm, ifail)
Integer, Intent (In) :: kl, ku, ldab, ldmb, ldz, ldv
Integer, Intent (Inout) :: icomm(*), ifail
Integer, Intent (Out) :: nconv
Real (Kind=nag_wp), Intent (In) :: ab(ldab,*), mb(ldmb,*), sigmar, sigmai
Real (Kind=nag_wp), Intent (Inout) :: dr(*), di(*), z(ldz,*), resid(*), v(ldv,*), comm(*)
C Header Interface
#include <nag.h>
void  f12agf_ (const Integer *kl, const Integer *ku, const double ab[], const Integer *ldab, const double mb[], const Integer *ldmb, const double *sigmar, const double *sigmai, Integer *nconv, double dr[], double di[], double z[], const Integer *ldz, double resid[], double v[], const Integer *ldv, double comm[], Integer icomm[], Integer *ifail)
The routine may be called by the names f12agf or nagf_sparseig_real_band_solve.

3 Description

The suite of routines is designed to calculate some of the eigenvalues, λ , (and optionally the corresponding eigenvectors, x ) of a standard eigenvalue problem Ax = λx , or of a generalized eigenvalue problem Ax = λBx of order n , where n is large and the coefficient matrices A and B are banded, real and nonsymmetric.
Following a call to the initialization routine f12aff, f12agf 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 A and B must be stored using the LAPACK column ordered storage format for banded nonsymmetric matrices; please refer to Section 3.3.2 in the F07 Chapter Introduction for details on this storage format.
f12agf is based on the banded driver routines 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 routines 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 routine.
f12agf, is a general purpose routine that must be called following initialization by f12aff. f12agf uses options, set either by default or explicitly by calling f12adf, to return the converged approximations to selected eigenvalues and (optionally):
Please note that for Generalized problems, the Shifted Inverse Imaginary and Shifted Inverse Real inverse modes are only appropriate if either A or B is symmetric semidefinite. Otherwise, if A or B is non-singular, the Standard problem can be solved using the matrix B-1A (say).

4 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, Philadelphia

5 Arguments

1: kl Integer Input
On entry: the number of subdiagonals of the matrices A and B.
Constraint: kl0.
2: ku Integer Input
On entry: the number of superdiagonals of the matrices A and B.
Constraint: ku0.
3: ab(ldab,*) Real (Kind=nag_wp) array Input
Note: the second dimension of the array ab must be at least max(1,n)  (see f12aff).
On entry: must contain the matrix A in LAPACK banded storage format for nonsymmetric matrices (see Section 3.3.4 in the F07 Chapter Introduction).
4: ldab Integer Input
On entry: the first dimension of the array ab as declared in the (sub)program from which f12agf is called.
Constraint: ldab 2×kl+ku+1.
5: mb(ldmb,*) Real (Kind=nag_wp) array Input
Note: the second dimension of the array mb must be at least max(1,n) (see f12aff).
On entry: must contain the matrix B in LAPACK banded storage format for nonsymmetric matrices (see Section 3.3.4 in the F07 Chapter Introduction).
6: ldmb Integer Input
On entry: the first dimension of the array mb as declared in the (sub)program from which f12agf is called.
Constraint: ldmb2×kl+ku+1.
7: sigmar Real (Kind=nag_wp) Input
On entry: if one of the Shifted Inverse Real modes (see f12adf) have been selected then sigmar must contain the real part of the shift used; otherwise sigmar is not referenced. Section 4.2.3.4 in the F12 Chapter Introduction describes the use of shift and inverse transformations.
8: sigmai Real (Kind=nag_wp) Input
On entry: if one of the Shifted Inverse Real modes (see f12adf) have been selected then sigmai must contain the imaginary part of the shift used; otherwise sigmai is not referenced. Section 4.2.3.4 in the F12 Chapter Introduction describes the use of shift and inverse transformations.
9: nconv Integer Output
On exit: the number of converged eigenvalues.
10: dr(*) Real (Kind=nag_wp) array Output
Note: the dimension of the array dr must be at least nev+1  (see f12aff).
On exit: 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 nev+1 of the array.
11: di(*) Real (Kind=nag_wp) array Output
Note: the dimension of the array di must be at least nev+1  (see f12aff).
On exit: 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 nev+1 of the array.
12: z(ldz,*) Real (Kind=nag_wp) array Output
Note: the second dimension of the array z must be at least nev+1 if the default option Vectors=RITZ has been selected and at least 1 if the option Vectors=NONE or SCHUR has been selected (see f12aff).
On exit: if the default option Vectors=RITZ 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.
13: ldz Integer Input
On entry: the first dimension of the array z as declared in the (sub)program from which f12agf is called.
Constraints:
  • if the default option Vectors=RITZ has been selected, ldzn;
  • if the option Vectors=NONE or SCHUR has been selected, ldz1.
14: resid(*) Real (Kind=nag_wp) array Input/Output
Note: the dimension of the array resid must be at least n (see f12aff).
On entry: need not be set unless the option Initial Residual has been set in a prior call to f12adf in which case resid must contain an initial residual vector.
On exit: contains the final residual vector.
15: v(ldv,*) Real (Kind=nag_wp) array Output
Note: the second dimension of the array v must be at least max(1,ncv) (see f12aff).
On exit: if the option Vectors=SCHUR or RITZ (see f12adf) then the first nconv×n elements of v will contain approximate Schur vectors that span the desired invariant subspace.
The ith Schur vector is stored in the ith column of v.
16: ldv Integer Input
On entry: the first dimension of the array v as declared in the (sub)program from which f12agf is called.
Constraint: ldvn.
17: comm(*) Real (Kind=nag_wp) array Communication Array
On entry: must remain unchanged from the prior call to f12adf and f12aff.
On exit: contains no useful information.
18: icomm(*) Integer array Communication Array
On entry: must remain unchanged from the prior call to f12adf and f12aff.
On exit: contains no useful information.
19: ifail Integer Input/Output
On entry: ifail must be set to 0, −1 or 1 to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of 0 causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of −1 means that an error message is printed while a value of 1 means that it is not.
If halting is not appropriate, the value −1 or 1 is recommended. If message printing is undesirable, then the value 1 is recommended. Otherwise, the value 0 is recommended. When the value -1 or 1 is used it is essential to test the value of ifail on exit.
On exit: ifail=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6 Error Indicators and Warnings

If on entry ifail=0 or −1, explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
ifail=1
On entry, kl=value.
Constraint: kl 0.
ifail=2
On entry, ku=value.
Constraint: ku 0.
ifail=3
On entry, ldab=value, 2×kl+ku+1=value.
Constraint: ldab2×kl+ku+1.
ifail=4
The option Shifted Inverse Imaginary has been selected and sigmai= zero on entry; sigmai must be nonzero for this mode of operation.
ifail=5
The maximum number of iterations 0, the option Iteration Limit has been set to value.
ifail=6
The options Generalized and Regular are incompatible.
ifail=7
The option Initial Residual was selected but the starting vector held in resid is zero.
ifail=8
Either the initialization routine has not been called prior to the first call of this routine or a communication array has become corrupted.
ifail=9
On entry, ldz=value, n=value in f12aff.
Constraint: ldzmax(1,n).
ifail=10
On entry, Vectors = Select , but this is not yet implemented.
ifail=11
The number of eigenvalues found to sufficient accuracy is zero.
ifail=12
Could not build an Arnoldi factorization. The size of the current Arnoldi factorization = value.
ifail=13
Error in internal call to compute eigenvalues and corresponding error bounds of the current upper Hessenberg matrix. Please contact NAG.
ifail=14
During calculation of a real Schur form, there was a failure to compute a number of eigenvalues. Please contact NAG.
ifail=15
The computed Schur form could not be reordered by an internal call. Please contact NAG.
ifail=16
Error in internal call to compute eigenvectors. Please contact NAG.
ifail=17
Failure during internal factorization of real banded matrix. Please contact NAG.
ifail=18
Failure during internal solution of real banded matrix. Please contact NAG.
ifail=19
Failure during internal factorization of complex banded matrix. Please contact NAG.
ifail=20
Failure during internal solution of complex banded matrix. Please contact NAG.
ifail=21
The maximum number of iterations has been reached. The maximum number of iterations=value. The number of converged eigenvalues =value.
ifail=22
No shifts could be applied during a cycle of the implicitly restarted Lanczos iteration.
ifail=23
Overflow occurred during transformation of Ritz values to those of the original problem.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.

7 Accuracy

The relative accuracy of a Ritz value, λ , is considered acceptable if its Ritz estimate Tolerance × |λ| . The default Tolerance used is the machine precision given by x02ajf.

8 Parallelism and Performance

f12agf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
f12agf makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the Users' Note for your implementation for any additional implementation-specific information.

9 Further Comments

None.

10 Example

This example constructs the matrices A and B using LAPACK band storage format and solves Ax=λBx in shifted imaginary mode using the complex shift σ .

10.1 Program Text

Program Text (f12agfe.f90)

10.2 Program Data

Program Data (f12agfe.d)

10.3 Program Results

Program Results (f12agfe.r)