NAG FL Interface
f08qgf (dtrsen)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

f08qgf reorders the Schur factorization of a real general matrix so that a selected cluster of eigenvalues appears in the leading elements or blocks on the diagonal of the Schur form. The routine also optionally computes the reciprocal condition numbers of the cluster of eigenvalues and/or the invariant subspace.

2 Specification

Fortran Interface
Subroutine f08qgf ( job, compq, select, n, t, ldt, q, ldq, wr, wi, m, s, sep, work, lwork, iwork, liwork, info)
Integer, Intent (In) :: n, ldt, ldq, lwork, liwork
Integer, Intent (Out) :: m, iwork(max(1,liwork)), info
Real (Kind=nag_wp), Intent (Inout) :: t(ldt,*), q(ldq,*), wr(*), wi(*)
Real (Kind=nag_wp), Intent (Out) :: s, sep, work(max(1,lwork))
Logical, Intent (In) :: select(*)
Character (1), Intent (In) :: job, compq
C Header Interface
#include <nag.h>
void  f08qgf_ (const char *job, const char *compq, const logical sel[], const Integer *n, double t[], const Integer *ldt, double q[], const Integer *ldq, double wr[], double wi[], Integer *m, double *s, double *sep, double work[], const Integer *lwork, Integer iwork[], const Integer *liwork, Integer *info, const Charlen length_job, const Charlen length_compq)
The routine may be called by the names f08qgf, nagf_lapackeig_dtrsen or its LAPACK name dtrsen.

3 Description

f08qgf reorders the Schur factorization of a real general matrix A=QTQT, so that a selected cluster of eigenvalues appears in the leading diagonal elements or blocks of the Schur form.
The reordered Schur form T~ is computed by an orthogonal similarity transformation: T~=ZTTZ. Optionally the updated matrix Q~ of Schur vectors is computed as Q~=QZ, giving A=Q~T~Q~T.
Let T~= ( T11 T12 0 T22 ) , where the selected eigenvalues are precisely the eigenvalues of the leading m×m sub-matrix T11. Let Q~ be correspondingly partitioned as ( Q1 Q2 ) where Q1 consists of the first m columns of Q. Then AQ1=Q1T11, and so the m columns of Q1 form an orthonormal basis for the invariant subspace corresponding to the selected cluster of eigenvalues.
Optionally the routine also computes estimates of the reciprocal condition numbers of the average of the cluster of eigenvalues and of the invariant subspace.

4 References

Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore

5 Arguments

1: job Character(1) Input
On entry: indicates whether condition numbers are required for the cluster of eigenvalues and/or the invariant subspace.
job='N'
No condition numbers are required.
job='E'
Only the condition number for the cluster of eigenvalues is computed.
job='V'
Only the condition number for the invariant subspace is computed.
job='B'
Condition numbers for both the cluster of eigenvalues and the invariant subspace are computed.
Constraint: job='N', 'E', 'V' or 'B'.
2: compq Character(1) Input
On entry: indicates whether the matrix Q of Schur vectors is to be updated.
compq='V'
The matrix Q of Schur vectors is updated.
compq='N'
No Schur vectors are updated.
Constraint: compq='V' or 'N'.
3: select(*) Logical array Input
Note: the dimension of the array select must be at least max(1,n).
On entry: the eigenvalues in the selected cluster. To select a real eigenvalue λj, select(j) must be set .TRUE.. To select a complex conjugate pair of eigenvalues λj and λj+1 (corresponding to a 2×2 diagonal block), select(j) and/or select(j+1) must be set to .TRUE.. A complex conjugate pair of eigenvalues must be either both included in the cluster or both excluded. See also Section 9.
4: n Integer Input
On entry: n, the order of the matrix T.
Constraint: n0.
5: t(ldt,*) Real (Kind=nag_wp) array Input/Output
Note: the second dimension of the array t must be at least max(1,n).
On entry: the n×n upper quasi-triangular matrix T in canonical Schur form, as returned by f08pef. See also Section 9.
On exit: t is overwritten by the updated matrix T~.
6: ldt Integer Input
On entry: the first dimension of the array t as declared in the (sub)program from which f08qgf is called.
Constraint: ldt max(1,n) .
7: q(ldq,*) Real (Kind=nag_wp) array Input/Output
Note: the second dimension of the array q must be at least max(1,n) if compq='V' and at least 1 if compq='N'.
On entry: if compq='V', q must contain the n×n orthogonal matrix Q of Schur vectors, as returned by f08pef.
On exit: if compq='V', q contains the updated matrix of Schur vectors; the first m columns of Q form an orthonormal basis for the specified invariant subspace.
If compq='N', q is not referenced.
8: ldq Integer Input
On entry: the first dimension of the array q as declared in the (sub)program from which f08qgf is called.
Constraints:
  • if compq='V', ldq max(1,n) ;
  • if compq='N', ldq1.
9: wr(*) Real (Kind=nag_wp) array Output
10: wi(*) Real (Kind=nag_wp) array Output
Note: the dimension of the arrays wr and wi must be at least max(1,n).
On exit: the real and imaginary parts, respectively, of the reordered eigenvalues of T~. The eigenvalues are stored in the same order as on the diagonal of T~; see Section 9 for details. Note that if a complex eigenvalue is sufficiently ill-conditioned, then its value may differ significantly from its value before reordering.
11: m Integer Output
On exit: m, the dimension of the specified invariant subspace. The value of m is obtained by counting 1 for each selected real eigenvalue and 2 for each selected complex conjugate pair of eigenvalues (see select); 0mn.
12: s Real (Kind=nag_wp) Output
On exit: if job='E' or 'B', s is a lower bound on the reciprocal condition number of the average of the selected cluster of eigenvalues. If m=0 or n, s=1; if info=1 (see Section 6), s is set to zero.
If job='N' or 'V', s is not referenced.
13: sep Real (Kind=nag_wp) Output
On exit: if job='V' or 'B', sep is the estimated reciprocal condition number of the specified invariant subspace. If m=0 or n, sep=T; if info=1 (see Section 6), sep is set to zero.
If job='N' or 'E', sep is not referenced.
14: work(max(1,lwork)) Real (Kind=nag_wp) array Workspace
On exit: if info=0, work(1) contains the minimum value of lwork required for optimal performance.
15: lwork Integer Input
On entry: the dimension of the array work as declared in the (sub)program from which f08qgf is called, unless lwork=−1, in which case a workspace query is assumed and the routine only calculates the minimum dimension of work.
Constraints:
  • if job='N', lworkmax(1,n) or lwork=−1;
  • if job='E', lworkmax(1,m×(n-m)) or lwork=−1;
  • if job='V' or 'B', lworkmax(1,2m×(n-m)) or lwork=−1.
The actual amount of workspace required cannot exceed n2/4 if job='E' or n2/2 if job='V' or 'B'.
16: iwork(max(1,liwork)) Integer array Workspace
On exit: if info=0, iwork(1) contains the required minimal size of liwork.
17: liwork Integer Input
On entry: the dimension of the array iwork as declared in the (sub)program from which f08qgf is called, unless liwork=−1, in which case a workspace query is assumed and the routine only calculates the minimum dimension of iwork.
Constraints:
  • if job='N' or 'E', liwork1 or liwork=−1;
  • if job='V' or 'B', liworkmax(1,m×(n-m)) or liwork=−1.
The actual amount of workspace required cannot exceed n2/2 if job='V' or 'B'.
18: info Integer Output
On exit: info=0 unless the routine detects an error (see Section 6).

6 Error Indicators and Warnings

info<0
If info=-i, argument i had an illegal value. An explanatory message is output, and execution of the program is terminated.
info=1
The reordering of T failed because a selected eigenvalue was too close to an unselected eigenvalue.
The reordering of T failed because a selected eigenvalue was too close to an eigenvalue which was not selected; this error exit can only occur if at least one of the eigenvalues involved was complex. The problem is too ill-conditioned: consider modifying the selection of eigenvalues so that eigenvalues which are very close together are either all included in the cluster or all excluded. On exit, T may have been partially reordered, but wr, wi and Q (if requested) are updated consistently with T; s and sep (if requested) are both set to zero.

7 Accuracy

The computed matrix T~ is similar to a matrix (T+E), where
E2 = O(ε) T2 ,  
and ε is the machine precision.
s cannot underestimate the true reciprocal condition number by more than a factor of min(m,n-m). sep may differ from the true value by m(n-m). The angle between the computed invariant subspace and the true subspace is O(ε)A2sep .
Note that if a 2×2 diagonal block is involved in the reordering, its off-diagonal elements are in general changed; the diagonal elements and the eigenvalues of the block are unchanged unless the block is sufficiently ill-conditioned, in which case they may be noticeably altered. It is possible for a 2×2 block to break into two 1×1 blocks, i.e., for a pair of complex eigenvalues to become purely real. The values of real eigenvalues however are never changed by the reordering.

8 Parallelism and Performance

Background information to multithreading can be found in the Multithreading documentation.
f08qgf 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

The input matrix T must be in canonical Schur form, as is the output matrix T~. This has the following structure.
If all the computed eigenvalues are real, T~ is upper triangular, and the diagonal elements of T~ are the eigenvalues; wr(i)=t~ii, for i=1,2,,n and wi(i)=0.0.
If some of the computed eigenvalues form complex conjugate pairs, then T~ has 2×2 diagonal blocks. Each diagonal block has the form
( t~ii t~i,i+1 t~i+1,i t~i+1,i+1 )= ( α β γ α )  
where βγ<0. The corresponding eigenvalues are α±βγ; wr(i)=wr(i+1)=α; wi(i)=+|βγ|; wi(i+1)=-wi(i).
The complex analogue of this routine is f08quf.

10 Example

This example reorders the Schur factorization of the matrix A=QTQT such that the two real eigenvalues appear as the leading elements on the diagonal of the reordered matrix T~, where
T = ( 0.7995 -0.1144 0.0060 0.0336 0.0000 -0.0994 0.2478 0.3474 0.0000 -0.6483 -0.0994 0.2026 0.0000 0.0000 0.0000 -0.1007 )  
and
Q = ( 0.6551 0.1037 0.3450 0.6641 0.5236 -0.5807 -0.6141 -0.1068 -0.5362 -0.3073 -0.2935 0.7293 0.0956 0.7467 -0.6463 0.1249 ) .  
The example program for f08qgf illustrates the computation of error bounds for the eigenvalues.
The original matrix A is given in f08nff.

10.1 Program Text

Program Text (f08qgfe.f90)

10.2 Program Data

Program Data (f08qgfe.d)

10.3 Program Results

Program Results (f08qgfe.r)