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_zhpgvx (f08tp)

 Contents

    1  Purpose
    2  Syntax
    7  Accuracy
    9  Example

Purpose

nag_lapack_zhpgvx (f08tp) computes selected eigenvalues and, optionally, eigenvectors of a complex generalized Hermitian-definite eigenproblem, of the form
Az=λBz ,   ABz=λz   or   BAz=λz ,  
where A and B are Hermitian, stored in packed format, and B is also positive definite. Eigenvalues and eigenvectors can be selected by specifying either a range of values or a range of indices for the desired eigenvalues.

Syntax

[ap, bp, m, w, z, jfail, info] = f08tp(itype, jobz, range, uplo, n, ap, bp, vl, vu, il, iu, abstol)
[ap, bp, m, w, z, jfail, info] = nag_lapack_zhpgvx(itype, jobz, range, uplo, n, ap, bp, vl, vu, il, iu, abstol)

Description

nag_lapack_zhpgvx (f08tp) first performs a Cholesky factorization of the matrix B as B=UHU , when uplo='U' or B=LLH , when uplo='L'. The generalized problem is then reduced to a standard symmetric eigenvalue problem
Cx=λx ,  
which is solved for the desired eigenvalues and eigenvectors; the eigenvectors are then backtransformed to give the eigenvectors of the original problem.
For the problem Az=λBz , the eigenvectors are normalized so that the matrix of eigenvectors, Z, satisfies
ZH A Z = Λ   and   ZH B Z = I ,  
where Λ  is the diagonal matrix whose diagonal elements are the eigenvalues. For the problem A B z = λ z  we correspondingly have
Z-1 A Z-H = Λ   and   ZH B Z = I ,  
and for B A z = λ z  we have
ZH A Z = Λ   and   ZH B-1 Z = I .  

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 http://www.netlib.org/lapack/lug
Demmel J W and Kahan W (1990) Accurate singular values of bidiagonal matrices SIAM J. Sci. Statist. Comput. 11 873–912
Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore

Parameters

Compulsory Input Parameters

1:     itype int64int32nag_int scalar
Specifies the problem type to be solved.
itype=1
Az=λBz.
itype=2
ABz=λz.
itype=3
BAz=λz.
Constraint: itype=1, 2 or 3.
2:     jobz – string (length ≥ 1)
Indicates whether eigenvectors are computed.
jobz='N'
Only eigenvalues are computed.
jobz='V'
Eigenvalues and eigenvectors are computed.
Constraint: jobz='N' or 'V'.
3:     range – string (length ≥ 1)
If range='A', all eigenvalues will be found.
If range='V', all eigenvalues in the half-open interval vl,vu will be found.
If range='I', the ilth to iuth eigenvalues will be found.
Constraint: range='A', 'V' or 'I'.
4:     uplo – string (length ≥ 1)
If uplo='U', the upper triangles of A and B are stored.
If uplo='L', the lower triangles of A and B are stored.
Constraint: uplo='U' or 'L'.
5:     n int64int32nag_int scalar
n, the order of the matrices A and B.
Constraint: n0.
6:     ap: – complex array
The dimension of the array ap must be at least max1,n×n+1/2
The upper or lower triangle of the n by n Hermitian matrix A, packed by columns.
More precisely,
  • if uplo='U', the upper triangle of A must be stored with element Aij in api+jj-1/2 for ij;
  • if uplo='L', the lower triangle of A must be stored with element Aij in api+2n-jj-1/2 for ij.
7:     bp: – complex array
The dimension of the array bp must be at least max1,n×n+1/2
The upper or lower triangle of the n by n Hermitian matrix B, packed by columns.
More precisely,
  • if uplo='U', the upper triangle of B must be stored with element Bij in bpi+jj-1/2 for ij;
  • if uplo='L', the lower triangle of B must be stored with element Bij in bpi+2n-jj-1/2 for ij.
8:     vl – double scalar
9:     vu – double scalar
If range='V', the lower and upper bounds of the interval to be searched for eigenvalues.
If range='A' or 'I', vl and vu are not referenced.
Constraint: if range='V', vl<vu.
10:   il int64int32nag_int scalar
11:   iu int64int32nag_int scalar
If range='I', the indices (in ascending order) of the smallest and largest eigenvalues to be returned.
If range='A' or 'V', il and iu are not referenced.
Constraints:
  • if range='I' and n=0, il=1 and iu=0;
  • if range='I' and n>0, 1 il iu n .
12:   abstol – double scalar
The absolute error tolerance for the eigenvalues. An approximate eigenvalue is accepted as converged when it is determined to lie in an interval a,b  of width less than or equal to
abstol+ε maxa,b ,  
where ε  is the machine precision. If abstol is less than or equal to zero, then ε T1  will be used in its place, where T is the tridiagonal matrix obtained by reducing C to tridiagonal form. Eigenvalues will be computed most accurately when abstol is set to twice the underflow threshold 2 × x02am   , not zero. If this function returns with info=1ton, indicating that some eigenvectors did not converge, try setting abstol to 2 × x02am   . See Demmel and Kahan (1990).

Optional Input Parameters

None.

Output Parameters

1:     ap: – complex array
The dimension of the array ap will be max1,n×n+1/2
The contents of ap are destroyed.
2:     bp: – complex array
The dimension of the array bp will be max1,n×n+1/2
The triangular factor U or L from the Cholesky factorization B=UHU or B=LLH, in the same storage format as B.
3:     m int64int32nag_int scalar
The total number of eigenvalues found. 0mn.
If range='A', m=n.
If range='I', m=iu-il+1.
4:     wn – double array
The first m elements contain the selected eigenvalues in ascending order.
5:     zldz: – complex array
The first dimension, ldz, of the array z will be
  • if jobz='V', ldz= max1,n ;
  • otherwise ldz=1.
The second dimension of the array z will be max1,m if jobz='V' and 1 otherwise.
If jobz='V', then
  • if info=0, the first m columns of Z contain the orthonormal eigenvectors of the matrix A corresponding to the selected eigenvalues, with the ith column of Z holding the eigenvector associated with wi. The eigenvectors are normalized as follows:
    • if itype=1 or 2, ZHBZ=I;
    • if itype=3, ZHB-1Z=I;
  • if an eigenvector fails to converge (info=1ton), then that column of Z contains the latest approximation to the eigenvector, and the index of the eigenvector is returned in jfail.
If jobz='N', z is not referenced.
6:     jfail: int64int32nag_int array
The dimension of the array jfail will be max1,n
If jobz='V', then
  • if info=0, the first m elements of jfail are zero;
  • if info=1ton, jfail contains the indices of the eigenvectors that failed to converge.
If jobz='N', jfail is not referenced.
7:     info int64int32nag_int scalar
info=0 unless the function detects an error (see Error Indicators and Warnings).

Error Indicators and Warnings

Cases prefixed with W are classified as warnings and do not generate an error of type NAG:error_n. See nag_issue_warnings.

   info=-i
If info=-i, parameter i had an illegal value on entry. The parameters are numbered as follows:
1: itype, 2: jobz, 3: range, 4: uplo, 5: n, 6: ap, 7: bp, 8: vl, 9: vu, 10: il, 11: iu, 12: abstol, 13: m, 14: w, 15: z, 16: ldz, 17: work, 18: rwork, 19: iwork, 20: jfail, 21: 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.
W  info=1ton
If info=i, nag_lapack_zhpevx (f08gp) failed to converge; i eigenvectors failed to converge. Their indices are stored in array jfail.
   info>n
nag_lapack_zpptrf (f07gr) returned an error code; i.e., if info=n+i, for 1in, then the leading minor of order i of B is not positive definite. The factorization of B could not be completed and no eigenvalues or eigenvectors were computed.

Accuracy

If B is ill-conditioned with respect to inversion, then the error bounds for the computed eigenvalues and vectors may be large, although when the diagonal elements of B differ widely in magnitude the eigenvalues and eigenvectors may be less sensitive than the condition of B would suggest. See Section 4.10 of Anderson et al. (1999) for details of the error bounds.

Further Comments

The total number of floating-point operations is proportional to n3 .
The real analogue of this function is nag_lapack_dspgvx (f08tb).

Example

This example finds the eigenvalues in the half-open interval -3,3 , and corresponding eigenvectors, of the generalized Hermitian eigenproblem Az = λ Bz , where
A = -7.36i+0.00 0.77-0.43i -0.64-0.92i 3.01-6.97i 0.77+0.43i 3.49i+0.00 2.19+4.45i 1.90+3.73i -0.64+0.92i 2.19-4.45i 0.12i+0.00 2.88-3.17i 3.01+6.97i 1.90-3.73i 2.88+3.17i -2.54i+0.00  
and
B = 3.23i+0.00 1.51-1.92i 1.90+0.84i 0.42+2.50i 1.51+1.92i 3.58i+0.00 -0.23+1.11i -1.18+1.37i 1.90-0.84i -0.23-1.11i 4.09i+0.00 2.33-0.14i 0.42-2.50i -1.18-1.37i 2.33+0.14i 4.29i+0.00 .  
The example program for nag_lapack_zhpgvd (f08tq) illustrates solving a generalized symmetric eigenproblem of the form ABz=λz .
function f08tp_example


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

% Hermitian matrices A and B stored in packed (Upper) format
n = int64(4);
uplo = 'U';
ap = [-7.36;
       0.77 - 0.43i;  3.49 + 0i;
      -0.64 - 0.92i;  2.19 + 4.45i;  0.12 + 0i;
       3.01 - 6.97i;  1.90 + 3.73i;  2.88 - 3.17i; -2.54 + 0i];
bp = [ 3.23;
       1.51 - 1.92i;  3.58 + 0i;
       1.90 + 0.84i; -0.23 + 1.11i;  4.09 + 0i;
       0.42 + 2.50i; -1.18 + 1.37i;  2.33 - 0.14i;  4.29 + 0i];

% Eigenvalues in range [-3,3] and corresponding eigenvectors for Az=lambda Bz
itype = int64(1);
jobz  = 'Vectors';
range = 'Values in range';
vl = -3;         vu = 3;
il = int64(0); iu = il;
abstol = 0;
[~, ~, m, w, z, jfail, info] = ...
f08tp( ...
       itype, jobz, range, uplo, n, ap, bp, vl, vu, il, iu, abstol);

disp('Selected Eigenvalues');
disp(w(1:m)');

% Normalize eigenvectors: largest elements are real
for i = 1:m
  [~,k] = max(abs(real(z(:,i)))+abs(imag(z(:,i))));
  z(:,i) = z(:,i)*conj(z(k,i))/abs(z(k,i));
end
disp('Corresponding Eigenvectors');
disp(z);


f08tp example results

Selected Eigenvalues
   -2.9936    0.5047

Corresponding Eigenvectors
  -0.6626 + 0.2258i   0.6462 + 0.0000i
  -0.1164 - 0.0178i   0.1216 - 0.4788i
   0.9098 + 0.0000i  -0.1344 - 0.3059i
  -0.6120 - 0.5348i   0.2924 + 0.5987i


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