hide long namesshow long names
hide short namesshow short names
Integer type:  int32  int64  nag_int  show int32  show int32  show int64  show int64  show nag_int  show nag_int

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

NAG Toolbox: nag_lapack_zhgeqz (f08xs)

 Contents

    1  Purpose
    2  Syntax
    7  Accuracy
    9  Example

Purpose

nag_lapack_zhgeqz (f08xs) 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.

Syntax

[a, b, alpha, beta, q, z, info] = f08xs(job, compq, compz, ilo, ihi, a, b, q, z, 'n', n)
[a, b, alpha, beta, q, z, info] = nag_lapack_zhgeqz(job, compq, compz, ilo, ihi, a, b, q, z, 'n', n)

Description

nag_lapack_zhgeqz (f08xs) 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 function nag_lapack_zgghrd (f08ws) should be called before invoking nag_lapack_zhgeqz (f08xs).
This problem is mathematically equivalent to solving the matrix equation
detA-λB=0.  
Note that, to avoid underflow, overflow and other arithmetic problems, the generalized eigenvalues λj are never computed explicitly by this function 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.

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

Parameters

Compulsory Input Parameters

1:     job – string (length ≥ 1)
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 – string (length ≥ 1)
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 – string (length ≥ 1)
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:     ilo int64int32nag_int scalar
5:     ihi int64int32nag_int scalar
The indices ilo and ihi, respectively which define the upper triangular parts of A. The submatrices A1:ilo-1,1:ilo-1 and Aihi+1:n,ihi+1:n are then upper triangular. These arguments are provided by nag_lapack_zggbal (f08wv) 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.
6:     alda: – complex array
The first dimension of the array a must be at least max1,n.
The second dimension of the array a must be at least max1,n.
The n by n upper Hessenberg matrix A. The elements below the first subdiagonal must be set to zero.
7:     bldb: – complex array
The first dimension of the array b must be at least max1,n.
The second dimension of the array b must be at least max1,n.
The n by n upper triangular matrix B. The elements below the diagonal must be zero.
8:     qldq: – complex array
The first dimension, ldq, of the array q must satisfy
  • if compq='V' or 'I', ldqn;
  • if compq='N', ldq1.
The second dimension of the array q must be at least max1,n if compq='V' or 'I' and at least 1 if compq='N'.
If compq='V', the matrix Q0. The matrix Q0 is usually the matrix Q returned by nag_lapack_zgghrd (f08ws).
If compq='N', q is not referenced.
9:     zldz: – complex array
The first dimension, ldz, of the array z must satisfy
  • if compz='V' or 'I', ldzn;
  • if compz='N', ldz1.
The second dimension of the array z must be at least max1,n if compz='V' or 'I' and at least 1 if compz='N'.
If compz='V', the matrix Z0. The matrix Z0 is usually the matrix Z returned by nag_lapack_zgghrd (f08ws).
If compz='N', z is not referenced.

Optional Input Parameters

1:     n int64int32nag_int scalar
Default: the second dimension of the arrays a, b, q, z and the first dimension of the arrays a, b, q, z. (An error is raised if these dimensions are not equal.)
n, the order of the matrices A, B, Q and Z.
Constraint: n0.

Output Parameters

1:     alda: – complex array
The first dimension of the array a will be max1,n.
The second dimension of the array a will be max1,n.
If job='S', the matrix pair A,B will be simultaneously reduced to generalized Schur form.
If job='E', the 1 by 1 and 2 by 2 diagonal blocks of the matrix pair A,B will give generalized eigenvalues but the remaining elements will be irrelevant.
2:     bldb: – complex array
The first dimension of the array b will be max1,n.
The second dimension of the array b will be max1,n.
If job='S', the matrix pair A,B will be simultaneously reduced to generalized Schur form.
If job='E', the 1 by 1 and 2 by 2 diagonal blocks of the matrix pair A,B will give generalized eigenvalues but the remaining elements will be irrelevant.
3:     alphan – complex array
αj, for j=1,2,,n.
4:     betan – complex array
βj, for j=1,2,,n.
5:     qldq: – complex array
The first dimension, ldq, of the array q will be
  • if compq='V' or 'I', ldq=n;
  • if compq='N', ldq=1.
The second dimension of the array q will be max1,n if compq='V' or 'I' and at least 1 if compq='N'.
If compq='V', q contains the matrix product QQ0.
If compq='I', q contains the transformation matrix Q.
6:     zldz: – complex array
The first dimension, ldz, of the array z will be
  • if compz='V' or 'I', ldz=n;
  • if compz='N', ldz=1.
The second dimension of the array z will be max1,n if compz='V' or 'I' and at least 1 if compz='N'.
If compz='V', z contains the matrix product ZZ0.
If compz='I', z contains the transformation matrix Z.
7:     info int64int32nag_int scalar
info=0 unless the function detects an error (see Error Indicators and Warnings).

Error Indicators and Warnings

   info=-i
If info=-i, parameter i had an illegal value on entry. The parameters are numbered as follows:
1: job, 2: compq, 3: compz, 4: n, 5: ilo, 6: ihi, 7: a, 8: lda, 9: b, 10: ldb, 11: alpha, 12: beta, 13: q, 14: ldq, 15: z, 16: ldz, 17: work, 18: lwork, 19: rwork, 20: info.
It is possible that info refers to a parameter that is omitted from the MATLAB interface. This usually indicates that an error in one of the other input parameters has caused an incorrect value to be inferred.
   info>0
If 1infon, the QZ iteration did not converge and the matrix pair A,B is not in the generalized Schur form at exit. However, if info<n, then the computed αi and βi should be correct for i=info+1,,n.
If n+1info2×n, the computation of shifts failed and the matrix pair A,B is not in the generalized Schur form at exit. However, if info<2×n, then the computed αi and βi should be correct for i=info-n+1,,n.
If info>2×n, then an unexpected Library error has occurred. Please contact NAG with details of your program.

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.

Further Comments

nag_lapack_zhgeqz (f08xs) is the fifth step in the solution of the complex generalized eigenvalue problem and is called after nag_lapack_zgghrd (f08ws).
The number of floating-point operations taken by this function is proportional to n3.
The real analogue of this function is nag_lapack_dhgeqz (f08xe).

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 functions: nag_lapack_zggbal (f08wv) to balance the matrix, nag_lapack_zgeqrf (f08as) to perform the QR factorization of B, nag_lapack_zunmqr (f08au) to apply Q to A, nag_lapack_zgghrd (f08ws) to reduce the matrix pair to the generalized Hessenberg form and nag_lapack_zhgeqz (f08xs) to compute the eigenvalues using the QZ algorithm.
function f08xs_example


fprintf('f08xs example results\n\n');

% Generalized eigenvalues of matrix pair (A,B) , where
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];
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];

% Balance matrix pair
job = 'B';
[a, b, ilo, ihi, lscale, rscale, info] = ...
  f08wv(job, a, b);
bbal = b(ilo:ihi,ilo:ihi);
abal = a(ilo:ihi,ilo:ihi);

% QR factorize balanced B
[QR, tau, info] = f08as(bbal);

% Perform C = Q^H*A
side = 'Left';
trans = 'Conjugate transpose';
[c, info] = f08au( ...
                   side, trans, QR, tau, abal);

% Generalized Hessenberg form (C,R) -> (H,T)
compq = 'No Q';
compz = 'No Z';
z = complex(eye(4));
q = complex(eye(4));
jlo = int64(1);
jhi = int64(ihi-ilo+1);
[H, T, ~, ~, info] = ...
  f08ws( ...
         compq, compz, jlo, jhi, c, QR, q, z);

% Find eigenvalues of generalized Hessenberg form
%    = eigenvalues of (A,B).
job = 'Eigenvalues';
ilo = int64(1);
ihi = int64(4);
[~, ~, alpha, beta, ~, ~, info] = ...
  f08xs( ...
         job, compq, compz, jlo, jhi, H, T, q, z);

disp('Generalized eigenvalues of (A,B):');
disp(alpha./beta);


f08xs example results

Generalized eigenvalues of (A,B):
  -0.6354 + 1.6529i
   0.4580 - 0.8426i
   0.4934 + 0.9102i
   0.6744 - 0.0499i


PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015