The routine may be called by the names f08ykf, nagf_lapackeig_dtgevc or its LAPACK name dtgevc.
3Description
f08ykf computes some or all of the right and/or left generalized eigenvectors of the matrix pair which is assumed to be in generalized upper Schur form. If the matrix pair is not in the generalized upper Schur form, then f08xef should be called before invoking f08ykf.
The right generalized eigenvector and the left generalized eigenvector of corresponding to a generalized eigenvalue are defined by
and
If a generalized eigenvalue is determined as , which is due to zero diagonal elements at the same locations in both and , a unit vector is returned as the corresponding eigenvector.
Note that the generalized eigenvalues are computed using f08xef but f08ykf does not explicitly require the generalized eigenvalues to compute eigenvectors. The ordering of the eigenvectors is based on the ordering of the eigenvalues as computed by f08ykf.
If all eigenvectors are requested, the routine may either return the matrices and/or of right or left eigenvectors of , or the products and/or , where and are two matrices supplied by you. Usually, and are chosen as the orthogonal matrices returned by f08xef. Equivalently, and are the left and right Schur vectors of the matrix pair supplied to f08xef. In that case, and are the left and right generalized eigenvectors, respectively, of the matrix pair supplied to f08xef.
must be block upper triangular; with and diagonal blocks. Corresponding to each diagonal block is a complex conjugate pair of eigenvalues and eigenvectors; only one eigenvector of the pair is computed, namely the one corresponding to the eigenvalue with positive imaginary part. Each block gives a real generalized eigenvalue and a corresponding eigenvector.
4References
Anderson E, Bai Z, Bischof C, Blackford S, Demmel J, Dongarra J J, Du Croz J J, Greenbaum A, Hammarling S, McKenney A and Sorensen D (1999) LAPACK Users' Guide (3rd Edition) SIAM, Philadelphia
Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore
Moler C B and Stewart G W (1973) An algorithm for generalized matrix eigenproblems SIAM J. Numer. Anal.10 241–256
Stewart G W and Sun J-G (1990) Matrix Perturbation Theory Academic Press, London
5Arguments
1: – Character(1)Input
On entry: specifies the required sets of generalized eigenvectors.
Only right eigenvectors are computed.
Only left eigenvectors are computed.
Both left and right eigenvectors are computed.
Constraint:
, or .
2: – Character(1)Input
On entry: specifies further details of the required generalized eigenvectors.
All right and/or left eigenvectors are computed.
All right and/or left eigenvectors are computed; they are backtransformed using the input matrices supplied in arrays vr and/or vl.
Selected right and/or left eigenvectors, defined by the array select, are computed.
Constraint:
, or .
3: – Logical arrayInput
Note: the dimension of the array select
must be at least
if , and at least otherwise.
On entry: specifies the eigenvectors to be computed if . To select the generalized eigenvector corresponding to the th generalized eigenvalue, the th element of select should be set to .TRUE.; if the eigenvalue corresponds to a complex conjugate pair, then real and imaginary parts of eigenvectors corresponding to the complex conjugate eigenvalue pair will be computed.
Note: the second dimension of the array a
must be at least
.
On entry: the matrix pair must be in the generalized Schur form. Usually, this is the matrix returned by f08xef.
6: – IntegerInput
On entry: the first dimension of the array a as declared in the (sub)program from which f08ykf is called.
Constraint:
.
7: – Real (Kind=nag_wp) arrayInput
Note: the second dimension of the array b
must be at least
.
On entry: the matrix pair must be in the generalized Schur form. If has a diagonal block then the corresponding block of must be diagonal with positive elements. Usually, this is the matrix returned by f08xef.
8: – IntegerInput
On entry: the first dimension of the array b as declared in the (sub)program from which f08ykf is called.
Constraint:
.
9: – Real (Kind=nag_wp) arrayInput/Output
Note: the second dimension of the array vl
must be at least
if or and at least if .
On entry: if and or , vl must be initialized to an matrix . Usually, this is the orthogonal matrix of left Schur vectors returned by f08xef.
if , the left eigenvectors of specified by select, stored consecutively in the columns of the array vl, in the same order as their corresponding eigenvalues.
A complex eigenvector corresponding to a complex eigenvalue is stored in two consecutive columns, the first holding the real part, and the second the imaginary part.
if , the right eigenvectors of specified by select, stored consecutively in the columns of the array vr, in the same order as their corresponding eigenvalues.
A complex eigenvector corresponding to a complex eigenvalue is stored in two consecutive columns, the first holding the real part, and the second the imaginary part.
On entry: the first dimension of the array vr as declared in the (sub)program from which f08ykf is called.
Constraints:
if or , ;
if , .
13: – IntegerInput
On entry: the number of columns in the arrays vl and/or vr.
Constraints:
if or , ;
if , mm must not be less than the number of requested eigenvectors.
14: – IntegerOutput
On exit: the number of columns in the arrays vl and/or vr actually used to store the eigenvectors. If or , m is set to n. Each selected real eigenvector occupies one column and each selected complex eigenvector occupies two columns.
15: – Real (Kind=nag_wp) arrayWorkspace
16: – IntegerOutput
On exit: unless the routine detects an error (see Section 6).
6Error Indicators and Warnings
If , argument had an illegal value. An explanatory message is output, and execution of the program is terminated.
The block does not have complex eigenvalues.
7Accuracy
It is beyond the scope of this manual to summarise the accuracy of the solution of the generalized eigenvalue problem. Interested readers should consult Section 4.11 of the LAPACK Users' Guide (see Anderson et al. (1999)) and Chapter 6 of Stewart and Sun (1990).
8Parallelism and Performance
f08ykf 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.
9Further Comments
f08ykf is the sixth step in the solution of the real generalized eigenvalue problem and is called after f08xef.
This example computes the and arguments, which defines the generalized eigenvalues and the corresponding left and right eigenvectors, of the matrix pair given by
To compute generalized eigenvalues, it is required to call five routines: f08whf to balance the matrix, f08aef to perform the factorization of , f08agf to apply to , f08wff to reduce the matrix pair to the generalized Hessenberg form and f08xef to compute the eigenvalues via the algorithm.
The computation of generalized eigenvectors is done by calling f08ykf to compute the eigenvectors of the balanced matrix pair. The routine f08wjf is called to backward transform the eigenvectors to the user-supplied matrix pair. If both left and right eigenvectors are required then f08wjf must be called twice.