NAG Library Routine Document

f08pxf (zhsein)

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

Fortran Interface
Subroutine f08pxf ( job, eigsrc, initv, select, n, h, ldh, w, vl, ldvl, vr, ldvr, mm, m, work, rwork, ifaill, ifailr, info)
Integer, Intent (In):: n, ldh, ldvl, ldvr, mm
Integer, Intent (Inout):: ifaill(*), ifailr(*)
Integer, Intent (Out):: m, info
Real (Kind=nag_wp), Intent (Out):: rwork(n)
Complex (Kind=nag_wp), Intent (In):: h(ldh,*)
Complex (Kind=nag_wp), Intent (Inout):: w(*), vl(ldvl,*), vr(ldvr,*)
Complex (Kind=nag_wp), Intent (Out):: work(n*n)
Logical, Intent (In):: select(*)
Character (1), Intent (In):: job, eigsrc, initv
C Header Interface
#include <nagmk26.h>
void  f08pxf_ (const char *job, const char *eigsrc, const char *initv, const logical sel[], const Integer *n, const Complex h[], const Integer *ldh, Complex w[], Complex vl[], const Integer *ldvl, Complex vr[], const Integer *ldvr, const Integer *mm, Integer *m, Complex work[], double rwork[], Integer ifaill[], Integer ifailr[], Integer *info, const Charlen length_job, const Charlen length_eigsrc, const Charlen length_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
Arguments

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:     hldh* – 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. If a NaN is detected in h, the routine will return with info=-6.
Constraint: No element of h is equal to NaN.
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:     vlldvl* – 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', ldvln;
  • if job='R', ldvl1.
11:   vrldvr* – 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', ldvrn;
  • if job='L', ldvr1.
13:   mm – IntegerInput
On entry: the number of columns in the arrays vl and/or vr . This must be an upper bound on the actual number of columns required, that is, the number of elements of select, in the first n, that are set to .TRUE..
Constraint: mmm.
14:   m – IntegerOutput
On exit: m, the number of selected eigenvectors.
15:   workn×n – Complex (Kind=nag_wp) arrayWorkspace
16:   rworkn – 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
value eigenvectors (as indicated by arguments ifaill and/or ifailr) 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
Parallelism and Performance

f08pxf (zhsein) is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
f08pxf (zhsein) 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 real analogue of this routine is f08pkf (dhsein).

10
Example

See Section 10 in f08nuf (zunmhr).