NAG FL Interface
f08xsf (zhgeqz)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

f08xsf implements the QZ method for finding generalized eigenvalues of the complex matrix pair (A,B) of order n, which is in the generalized upper Hessenberg form.

2 Specification

Fortran Interface
Subroutine f08xsf ( job, compq, compz, n, ilo, ihi, a, lda, b, ldb, alpha, beta, q, ldq, z, ldz, work, lwork, rwork, info)
Integer, Intent (In) :: n, ilo, ihi, lda, ldb, ldq, ldz, lwork
Integer, Intent (Out) :: info
Real (Kind=nag_wp), Intent (Out) :: rwork(n)
Complex (Kind=nag_wp), Intent (Inout) :: a(lda,*), b(ldb,*), q(ldq,*), z(ldz,*)
Complex (Kind=nag_wp), Intent (Out) :: alpha(n), beta(n), work(max(1,lwork))
Character (1), Intent (In) :: job, compq, compz
C Header Interface
#include <nag.h>
void  f08xsf_ (const char *job, const char *compq, const char *compz, const Integer *n, const Integer *ilo, const Integer *ihi, Complex a[], const Integer *lda, Complex b[], const Integer *ldb, Complex alpha[], Complex beta[], Complex q[], const Integer *ldq, Complex z[], const Integer *ldz, Complex work[], const Integer *lwork, double rwork[], Integer *info, const Charlen length_job, const Charlen length_compq, const Charlen length_compz)
The routine may be called by the names f08xsf, nagf_lapackeig_zhgeqz or its LAPACK name zhgeqz.

3 Description

f08xsf implements a single-shift version of the QZ method for finding the generalized eigenvalues of the complex matrix pair (A,B) which is in the generalized upper Hessenberg form. If the matrix pair (A,B) is not in the generalized upper Hessenberg form, then the routine f08wtf should be called before invoking f08xsf.
This problem is mathematically equivalent to solving the matrix equation
det(A-λB)=0.  
Note that, to avoid underflow, overflow and other arithmetic problems, the generalized eigenvalues λj are never computed explicitly by this routine but defined as ratios between two computed values, αj and βj:
λj=αj/βj.  
The arguments αj, in general, are finite complex values and βj are finite real non-negative values.
If desired, the matrix pair (A,B) may be reduced to generalized Schur form. That is, the transformed matrices A and B are upper triangular and the diagonal values of A and B provide α and β.
The argument job specifies two options. If job='S' then the matrix pair (A,B) is simultaneously reduced to Schur form by applying one unitary transformation (usually called Q) on the left and another (usually called Z) on the right. That is,
AQHAZ BQHBZ  
If job='E', then at each iteration the same transformations are computed but they are only applied to those parts of A and B which are needed to compute α and β. This option could be used if generalized eigenvalues are required but not generalized eigenvectors.
If job='S' and compq='V' or 'I', and compz='V' or 'I', then the unitary transformations used to reduce the pair (A,B) are accumulated into the input arrays q and z. If generalized eigenvectors are required then job must be set to job='S' and if left (right) generalized eigenvectors are to be computed then compq (compz) must be set to compq='V' or 'I' rather than compq='N'.
If compq='I', then eigenvectors are accumulated on the identity matrix and on exit the array q contains the left eigenvector matrix Q. However, if compq='V' then the transformations are accumulated in the user-supplied matrix Q0 in array q on entry and thus on exit q contains the matrix product QQ0. A similar convention is used for compz.

4 References

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

5 Arguments

1: job Character(1) Input
On entry: specifies the operations to be performed on (A,B).
job='E'
The matrix pair (A,B) on exit might not be in the generalized Schur form.
job='S'
The matrix pair (A,B) on exit will be in the generalized Schur form.
Constraint: job='E' or 'S'.
2: compq Character(1) Input
On entry: specifies the operations to be performed on Q:
compq='N'
The array q is unchanged.
compq='V'
The left transformation Q is accumulated on the array q.
compq='I'
The array q is initialized to the identity matrix before the left transformation Q is accumulated in q.
Constraint: compq='N', 'V' or 'I'.
3: compz Character(1) Input
On entry: specifies the operations to be performed on Z.
compz='N'
The array z is unchanged.
compz='V'
The right transformation Z is accumulated on the array z.
compz='I'
The array z is initialized to the identity matrix before the right transformation Z is accumulated in z.
Constraint: compz='N', 'V' or 'I'.
4: n Integer Input
On entry: n, the order of the matrices A, B, Q and Z.
Constraint: n0.
5: ilo Integer Input
6: ihi Integer Input
On entry: the indices ilo and ihi, respectively which define the upper triangular parts of A. The submatrices A(1:ilo-1,1:ilo-1) and A(ihi+1:n,ihi+1:n) are then upper triangular. These arguments are provided by f08wvf if the matrix pair was previously balanced; otherwise, ilo=1 and ihi=n.
Constraints:
  • if n>0, 1 ilo ihi n ;
  • if n=0, ilo=1 and ihi=0.
7: a(lda,*) Complex (Kind=nag_wp) array Input/Output
Note: the second dimension of the array a must be at least max(1,n).
On entry: the n×n upper Hessenberg matrix A. The elements below the first subdiagonal must be set to zero.
On exit: if job='S', the matrix pair (A,B) will be simultaneously reduced to generalized Schur form.
If job='E', the 1×1 and 2×2 diagonal blocks of the matrix pair (A,B) will give generalized eigenvalues but the remaining elements will be irrelevant.
8: lda Integer Input
On entry: the first dimension of the array a as declared in the (sub)program from which f08xsf is called.
Constraint: ldamax(1,n).
9: b(ldb,*) Complex (Kind=nag_wp) array Input/Output
Note: the second dimension of the array b must be at least max(1,n).
On entry: the n×n upper triangular matrix B. The elements below the diagonal must be zero.
On exit: if job='S', the matrix pair (A,B) will be simultaneously reduced to generalized Schur form.
If job='E', the 1×1 and 2×2 diagonal blocks of the matrix pair (A,B) will give generalized eigenvalues but the remaining elements will be irrelevant.
10: ldb Integer Input
On entry: the first dimension of the array b as declared in the (sub)program from which f08xsf is called.
Constraint: ldbmax(1,n).
11: alpha(n) Complex (Kind=nag_wp) array Output
On exit: αj, for j=1,2,,n.
12: beta(n) Complex (Kind=nag_wp) array Output
On exit: βj, for j=1,2,,n.
13: q(ldq,*) Complex (Kind=nag_wp) array Input/Output
Note: the second dimension of the array q must be at least max(1,n) if compq='V' or 'I' and at least 1 if compq='N'.
On entry: if compq='V', the matrix Q0. The matrix Q0 is usually the matrix Q returned by f08wtf.
If compq='N', q is not referenced.
On exit: if compq='V', q contains the matrix product QQ0.
If compq='I', q contains the transformation matrix Q.
14: ldq Integer Input
On entry: the first dimension of the array q as declared in the (sub)program from which f08xsf is called.
Constraints:
  • if compq='V' or 'I', ldqn;
  • if compq='N', ldq1.
15: z(ldz,*) Complex (Kind=nag_wp) array Input/Output
Note: the second dimension of the array z must be at least max(1,n) if compz='V' or 'I' and at least 1 if compz='N'.
On entry: if compz='V', the matrix Z0. The matrix Z0 is usually the matrix Z returned by f08wtf.
If compz='N', z is not referenced.
On exit: if compz='V', z contains the matrix product ZZ0.
If compz='I', z contains the transformation matrix Z.
16: ldz Integer Input
On entry: the first dimension of the array z as declared in the (sub)program from which f08xsf is called.
Constraints:
  • if compz='V' or 'I', ldzn;
  • if compz='N', ldz1.
17: work(max(1,lwork)) Complex (Kind=nag_wp) array Workspace
On exit: if info=0, the real part of work(1) contains the minimum value of lwork required for optimal performance.
18: lwork Integer Input
On entry: the dimension of the array work as declared in the (sub)program from which f08xsf is called.
If lwork=-1, a workspace query is assumed; the routine only calculates the minimum size of the work array, returns this value as the first entry of the work array, and no error message related to lwork is issued.
Constraint: lworkmax(1,n) or lwork=-1.
19: rwork(n) Real (Kind=nag_wp) array Workspace
20: 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,,n
The QZ iteration did not converge and the matrix pair (A,B) is not in the generalized Schur form. The computed αi and βi should be correct for i=value,,value.
info>n and info2×n
The computation of shifts failed and the matrix pair (A,B) is not in the generalized Schur form. The computed αi and βi should be correct for i=value,,value.
info>2×n
An unexpected Library error has occurred.

7 Accuracy

Please consult Section 4.11 of the LAPACK Users' Guide (see Anderson et al. (1999)) and Chapter 6 of Stewart and Sun (1990), for more information.

8 Parallelism and Performance

f08xsf 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

f08xsf is the fifth step in the solution of the complex generalized eigenvalue problem and is called after f08wtf.
The number of floating-point operations taken by this routine is proportional to n3.
The real analogue of this routine is f08xef.

10 Example

This example computes the α and β arguments, which defines the generalized eigenvalues, of the matrix pair (A,B) given by
A = ( 1.0+3.0i 1.0+4.0i 1.0+5.0i 1.0+6.0i 2.0+2.0i 4.0+3.0i 8.0+4.0i 16.0+5.0i 3.0+1.0i 9.0+2.0i 27.0+3.0i 81.0+4.0i 4.0+0.0i 16.0+1.0i 64.0+2.0i 256.0+3.0i )  
and
B = ( 1.0+0.0i 2.0+1.0i 3.0+2.0i 4.0+3.0i 1.0+1.0i 4.0+2.0i 9.0+3.0i 16.0+4.0i 1.0+2.0i 8.0+3.0i 27.0+4.0i 64.0+5.0i 1.0+3.0i 16.0+4.0i 81.0+5.0i 256.0+6.0i ) .  
This requires calls to five routines: f08wvf to balance the matrix, f08asf to perform the QR factorization of B, f08auf to apply Q to A, f08wtf to reduce the matrix pair to the generalized Hessenberg form and f08xsf to compute the eigenvalues using the QZ algorithm.

10.1 Program Text

Program Text (f08xsfe.f90)

10.2 Program Data

Program Data (f08xsfe.d)

10.3 Program Results

Program Results (f08xsfe.r)