NAG FL Interface
f08qff (dtrexc)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

f08qff reorders the Schur factorization of a real general matrix.

2 Specification

Fortran Interface
Subroutine f08qff ( compq, n, t, ldt, q, ldq, ifst, ilst, work, info)
Integer, Intent (In) :: n, ldt, ldq
Integer, Intent (Inout) :: ifst, ilst
Integer, Intent (Out) :: info
Real (Kind=nag_wp), Intent (Inout) :: t(ldt,*), q(ldq,*)
Real (Kind=nag_wp), Intent (Out) :: work(n)
Character (1), Intent (In) :: compq
C Header Interface
#include <nag.h>
void  f08qff_ (const char *compq, const Integer *n, double t[], const Integer *ldt, double q[], const Integer *ldq, Integer *ifst, Integer *ilst, double work[], Integer *info, const Charlen length_compq)
The routine may be called by the names f08qff, nagf_lapackeig_dtrexc or its LAPACK name dtrexc.

3 Description

f08qff reorders the Schur factorization of a real general matrix A=QTQT, so that the diagonal element or block of T with row index ifst is moved to row ilst.
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.

4 References

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

5 Arguments

1: 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'.
2: n Integer Input
On entry: n, the order of the matrix T.
Constraint: n0.
3: 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.
On exit: t is overwritten by the updated matrix T~. See also Section 9.
4: ldt Integer Input
On entry: the first dimension of the array t as declared in the (sub)program from which f08qff is called.
Constraint: ldt max(1,n) .
5: 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.
On exit: if compq='V', q contains the updated matrix of Schur vectors.
If compq='N', q is not referenced.
6: ldq Integer Input
On entry: the first dimension of the array q as declared in the (sub)program from which f08qff is called.
Constraints:
  • if compq='V', ldq max(1,n) ;
  • if compq='N', ldq1.
7: ifst Integer Input/Output
8: ilst Integer Input/Output
On entry: ifst and ilst must specify the reordering of the diagonal elements or blocks of T. The element or block with row index ifst is moved to row ilst by a sequence of exchanges between adjacent elements or blocks.
On exit: if ifst pointed to the second row of a 2×2 block on entry, it is changed to point to the first row. ilst always points to the first row of the block in its final position (which may differ from its input value by ±1).
Constraint: 1ifstn and 1ilstn.
9: work(n) Real (Kind=nag_wp) array Workspace
10: 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
Two adjacent diagonal elements or blocks could not be successfully exchanged. This error can only occur if the exchange involves at least one 2×2 block; it implies that the problem is very ill-conditioned, and that the eigenvalues of the two blocks are very close. On exit, T may have been partially reordered, and ilst points to the first row of the current position of the block being moved; Q (if requested) is updated consistently with T.

7 Accuracy

The computed matrix T~ is exactly similar to a matrix (T+E), where
E2 = O(ε) T2 ,  
and ε is the machine precision.
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.
f08qff 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 total number of floating-point operations is approximately 6nr if compq='N', and 12nr if compq='V', where r=|ifst-ilst|.
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 its diagonal elements are the eigenvalues.
If some of the computed eigenvalues form complex conjugate pairs, then T has 2×2 diagonal blocks. Each diagonal block has the form
( tii ti,i+1 ti+1,i ti+1,i+1 )= ( α β γ α )  
where βγ<0. The corresponding eigenvalues are α±βγ.
The complex analogue of this routine is f08qtf.

10 Example

This example reorders the Schur factorization of the matrix T so that the 2×2 block with row index 2 is moved to row 1, where
T = ( 0.80 -0.11 0.01 0.03 0.00 -0.10 0.25 0.35 0.00 -0.65 -0.10 0.20 0.00 0.00 0.00 -0.10 ) .  

10.1 Program Text

Program Text (f08qffe.f90)

10.2 Program Data

Program Data (f08qffe.d)

10.3 Program Results

Program Results (f08qffe.r)