F08PXF (ZHSEIN) (PDF version)
F08 Chapter Contents
F08 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

F08PXF (ZHSEIN)

Note:  before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.

+ Contents

    1  Purpose
    7  Accuracy
    9  Example

1  Purpose

F08PXF (ZHSEIN) computes selected left and/or right eigenvectors of a complex upper Hessenberg matrix corresponding to specified eigenvalues, by inverse iteration.

2  Specification

SUBROUTINE F08PXF ( JOB, EIGSRC, INITV, SELECT, N, H, LDH, W, VL, LDVL, VR, LDVR, MM, M, WORK, RWORK, IFAILL, IFAILR, INFO)
INTEGER  N, LDH, LDVL, LDVR, MM, M, IFAILL(*), IFAILR(*), INFO
REAL (KIND=nag_wp)  RWORK(N)
COMPLEX (KIND=nag_wp)  H(LDH,*), W(*), VL(LDVL,*), VR(LDVR,*), WORK(N*N)
LOGICAL  SELECT(*)
CHARACTER(1)  JOB, EIGSRC, INITV
The routine may be called by its LAPACK name zhsein.

3  Description

F08PXF (ZHSEIN) computes left and/or right eigenvectors of a complex upper Hessenberg matrix H, corresponding to selected eigenvalues.
The right eigenvector x, and the left eigenvector y, corresponding to an eigenvalue λ, are defined by:
Hx = λx   and   yHH = λyH   or  HHy = λ-y .
The eigenvectors are computed by inverse iteration. They are scaled so that max Rexi + Imxi = 1 .
If H has been formed by reduction of a complex general matrix A to upper Hessenberg form, then the eigenvectors of H may be transformed to eigenvectors of A by a call to F08NUF (ZUNMHR).

4  References

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

5  Parameters

1:     JOB – CHARACTER(1)Input
On entry: indicates whether left and/or right eigenvectors are to be computed.
JOB='R'
Only right eigenvectors are computed.
JOB='L'
Only left eigenvectors are computed.
JOB='B'
Both left and right eigenvectors are computed.
Constraint: JOB='R', 'L' or 'B'.
2:     EIGSRC – CHARACTER(1)Input
On entry: indicates whether the eigenvalues of H (stored in W) were found using F08PSF (ZHSEQR).
EIGSRC='Q'
The eigenvalues of H were found using F08PSF (ZHSEQR); thus if H has any zero subdiagonal elements (and so is block triangular), then the jth eigenvalue can be assumed to be an eigenvalue of the block containing the jth row/column. This property allows the routine to perform inverse iteration on just one diagonal block.
EIGSRC='N'
No such assumption is made and the routine performs inverse iteration using the whole matrix.
Constraint: EIGSRC='Q' or 'N'.
3:     INITV – CHARACTER(1)Input
On entry: indicates whether you are supplying initial estimates for the selected eigenvectors.
INITV='N'
No initial estimates are supplied.
INITV='U'
Initial estimates are supplied in VL and/or VR.
Constraint: INITV='N' or 'U'.
4:     SELECT(*) – LOGICAL arrayInput
Note: the dimension of the array SELECT must be at least max1,N.
On entry: specifies which eigenvectors are to be computed. To select the eigenvector corresponding to the eigenvalue Wj, SELECTj must be set to .TRUE..
5:     N – INTEGERInput
On entry: n, the order of the matrix H.
Constraint: N0.
6:     H(LDH,*) – COMPLEX (KIND=nag_wp) arrayInput
Note: the second dimension of the array H must be at least max1,N.
On entry: the n by n upper Hessenberg matrix H.
7:     LDH – INTEGERInput
On entry: the first dimension of the array H as declared in the (sub)program from which F08PXF (ZHSEIN) is called.
Constraint: LDHmax1,N.
8:     W(*) – COMPLEX (KIND=nag_wp) arrayInput/Output
Note: the dimension of the array W must be at least max1,N.
On entry: the eigenvalues of the matrix H. If EIGSRC='Q', the array must be exactly as returned by F08PSF (ZHSEQR).
On exit: the real parts of some elements of W may be modified, as close eigenvalues are perturbed slightly in searching for independent eigenvectors.
9:     VL(LDVL,*) – COMPLEX (KIND=nag_wp) arrayInput/Output
Note: the second dimension of the array VL must be at least max1,MM if JOB='L' or 'B' and at least 1 if JOB='R'.
On entry: if INITV='U' and JOB='L' or 'B', VL must contain starting vectors for inverse iteration for the left eigenvectors. Each starting vector must be stored in the same column as will be used to store the corresponding eigenvector (see below).
If INITV='N', VL need not be set.
On exit: if JOB='L' or 'B', VL contains the computed left eigenvectors (as specified by SELECT). The eigenvectors are stored consecutively in the columns of the array, in the same order as their eigenvalues.
If JOB='R', VL is not referenced.
10:   LDVL – INTEGERInput
On entry: the first dimension of the array VL as declared in the (sub)program from which F08PXF (ZHSEIN) is called.
Constraints:
  • if JOB='L' or 'B', LDVL max1,N ;
  • if JOB='R', LDVL1.
11:   VR(LDVR,*) – COMPLEX (KIND=nag_wp) arrayInput/Output
Note: the second dimension of the array VR must be at least max1,MM if JOB='R' or 'B' and at least 1 if JOB='L'.
On entry: if INITV='U' and JOB='R' or 'B', VR must contain starting vectors for inverse iteration for the right eigenvectors. Each starting vector must be stored in the same column as will be used to store the corresponding eigenvector (see below).
If INITV='N', VR need not be set.
On exit: if JOB='R' or 'B', VR contains the computed right eigenvectors (as specified by SELECT). The eigenvectors are stored consecutively in the columns of the array, in the same order as their eigenvalues.
If JOB='L', VR is not referenced.
12:   LDVR – INTEGERInput
On entry: the first dimension of the array VR as declared in the (sub)program from which F08PXF (ZHSEIN) is called.
Constraints:
  • if JOB='R' or 'B', LDVR max1,N ;
  • if JOB='L', LDVR1.
13:   MM – INTEGERInput
On entry: the number of columns in the arrays VL and/or VR . The actual number of columns required, m, is obtained by counting 1 for each selected real eigenvector and 2 for each selected complex eigenvector (see SELECT); 0mn.
Constraint: MMm.
14:   M – INTEGEROutput
On exit: m, the number of selected eigenvectors.
15:   WORK(N×N) – COMPLEX (KIND=nag_wp) arrayWorkspace
16:   RWORK(N) – REAL (KIND=nag_wp) arrayWorkspace
17:   IFAILL(*) – INTEGER arrayOutput
Note: the dimension of the array IFAILL must be at least max1,MM if JOB='L' or 'B' and at least 1 if JOB='R'.
On exit: if JOB='L' or 'B', then IFAILLi=0 if the selected left eigenvector converged and IFAILLi=j>0 if the eigenvector stored in the ith row or column of VL (corresponding to the jth eigenvalue) failed to converge.
If JOB='R', IFAILL is not referenced.
18:   IFAILR(*) – INTEGER arrayOutput
Note: the dimension of the array IFAILR must be at least max1,MM if JOB='R' or 'B' and at least 1 if JOB='L'.
On exit: if JOB='R' or 'B', then IFAILRi=0 if the selected right eigenvector converged and IFAILRi=j>0 if the eigenvector stored in the ith column of VR (corresponding to the jth eigenvalue) failed to converge.
If JOB='L', IFAILR is not referenced.
19:   INFO – INTEGEROutput
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>0
If INFO=i, then i eigenvectors (as indicated by the parameters IFAILL and/or IFAILR above) failed to converge. The corresponding columns of VL and/or VR contain no useful information.

7  Accuracy

Each computed right eigenvector xi is the exact eigenvector of a nearby matrix A+Ei, such that Ei=OεA. Hence the residual is small:
Axi - λixi = Oε A .
However, eigenvectors corresponding to close or coincident eigenvalues may not accurately span the relevant subspaces.
Similar remarks apply to computed left eigenvectors.

8  Further Comments

The real analogue of this routine is F08PKF (DHSEIN).

9  Example

See Section 9 in F08NUF (ZUNMHR).

F08PXF (ZHSEIN) (PDF version)
F08 Chapter Contents
F08 Chapter Introduction
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2012