The routine may be called by the names f02ecf or nagf_eigen_real_gen_eigsys.
3Description
f02ecf computes selected eigenvalues and the corresponding right eigenvectors of a real general matrix :
Eigenvalues may be selected either by modulus, satisfying:
or by real part, satisfying:
Note that even though is real, and may be complex. If is an eigenvector corresponding to a complex eigenvalue , then the complex conjugate vector is the eigenvector corresponding to the complex conjugate eigenvalue . The eigenvalues in a complex conjugate pair and are either both selected or both not selected.
4References
Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore
5Arguments
1: – Character(1)Input
On entry: indicates the criterion for selecting eigenvalues.
Eigenvalues are selected according to their moduli: .
Eigenvalues are selected according to their real parts: .
Constraint:
or .
2: – IntegerInput
On entry: , the order of the matrix .
Constraint:
.
3: – Real (Kind=nag_wp) arrayInput/Output
On entry: the general matrix .
On exit: contains the Hessenberg form of the balanced input matrix (see Section 9).
4: – IntegerInput
On entry: the first dimension of the array a as declared in the (sub)program from which f02ecf is called.
Constraint:
.
5: – Real (Kind=nag_wp)Input
6: – Real (Kind=nag_wp)Input
On entry: and , the lower and upper bounds on the criterion for the selected eigenvalues (see crit).
Constraint:
.
7: – IntegerInput
On entry: the second dimension of the arrays vr and vi as declared in the (sub)program from which f02ecf is called. mest must be an upper bound on , the number of eigenvalues and eigenvectors selected. No eigenvectors are computed if .
Constraint:
.
8: – IntegerOutput
On exit: , the number of eigenvalues actually selected.
9: – Real (Kind=nag_wp) arrayOutput
10: – Real (Kind=nag_wp) arrayOutput
On exit: the first m elements of wr and wi hold the real and imaginary parts, respectively, of the selected eigenvalues; elements to n contain the other eigenvalues. Complex conjugate pairs of eigenvalues are stored in consecutive elements of the arrays, with the eigenvalue having positive imaginary part first. See also Section 9.
11: – Real (Kind=nag_wp) arrayOutput
On exit: contains the real parts of the selected eigenvectors, with the th column holding the real part of the eigenvector associated with the eigenvalue (stored in and ).
12: – IntegerInput
On entry: the first dimension of the array vr as declared in the (sub)program from which f02ecf is called.
Constraint:
.
13: – Real (Kind=nag_wp) arrayOutput
On exit: contains the imaginary parts of the selected eigenvectors, with the th column holding the imaginary part of the eigenvector associated with the eigenvalue (stored in and ).
14: – IntegerInput
On entry: the first dimension of the array vi as declared in the (sub)program from which f02ecf is called.
Constraint:
.
15: – Real (Kind=nag_wp) arrayWorkspace
16: – IntegerInput
On entry: the dimension of the array work as declared in the (sub)program from which f02ecf is called.
Constraint:
.
17: – Integer arrayWorkspace
18: – Logical arrayWorkspace
19: – IntegerInput/Output
On entry: ifail must be set to , or to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of means that an error message is printed while a value of means that it is not.
If halting is not appropriate, the value or is recommended. If message printing is undesirable, then the value is recommended. Otherwise, the value is recommended. When the value or is used it is essential to test the value of ifail on exit.
On exit: unless the routine detects an error or a warning has been flagged (see Section 6).
6Error Indicators and Warnings
If on entry or , explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
On entry, .
Constraint: or .
On entry, and .
Constraint: .
On entry, and .
Constraint: .
On entry, and .
Constraint: .
On entry, and .
Constraint: .
On entry, .
Constraint: .
On entry, .
Constraint: .
On entry, and .
Constraint: .
The algorithm failed to converge: only eigenvalues have been computed; no eigenvectors have been computed.
There are more than mest eigenvalues in the specified range. m (number of eigenvalues in range) and . No eigenvectors have been computed. Rerun with second dimension of vr and .
Inverse iteration failed to compute all the specified eigenvectors. The number of eigenvectors which failed to converge is . The corresponding columns of vr and vi are set to zero.
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.
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.
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.
7Accuracy
If is an exact eigenvalue, and is the corresponding computed value, then
where is a modestly increasing function of , is the machine precision, and is the reciprocal condition number of ; is the balanced form of the original matrix (see Section 9), and .
If is the corresponding exact eigenvector, and is the corresponding computed eigenvector, then the angle between them is bounded as follows:
where is the reciprocal condition number of .
The condition numbers and may be computed from the Hessenberg form of the balanced matrix which is returned in the array a. This requires calling f08pef with to compute the Schur form of , followed by f08qlf.
8Parallelism and Performance
Background information to multithreading can be found in the Multithreading documentation.
f02ecf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
f02ecf 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
f02ecf
calls routines from LAPACK in Chapter F08. It
first balances the matrix, using a diagonal similarity transformation to reduce its norm; and then reduces the balanced matrix to upper Hessenberg form , using an orthogonal similarity transformation: . The routine uses the Hessenberg algorithm to compute all the eigenvalues of , which are the same as the eigenvalues of . It computes the eigenvectors of which correspond to the selected eigenvalues, using inverse iteration. It premultiplies the eigenvectors by to form the eigenvectors of ; and finally transforms the eigenvectors to those of the original matrix .
Each eigenvector (real or complex) is normalized so that , and the element of largest absolute value is real and positive.
The inverse iteration routine may make a small perturbation to the real parts of close eigenvalues, and this may shift their moduli just outside the specified bounds. If you are relying on eigenvalues being within the bounds, you should test them on return from f02ecf.
The time taken by the routine is approximately proportional to .
The routine can be used to compute all eigenvalues and eigenvectors, by setting wl large and negative, and wu large and positive.
10Example
This example computes those eigenvalues of the matrix whose moduli lie in the range , and their corresponding eigenvectors, where