PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_zhpgv (f08tn)
Purpose
nag_lapack_zhpgv (f08tn) computes all the eigenvalues and, optionally, all the eigenvectors of a complex generalized Hermitian-definite eigenproblem, of the form
where
and
are Hermitian, stored in packed format, and
is also positive definite.
Syntax
Description
nag_lapack_zhpgv (f08tn) first performs a Cholesky factorization of the matrix
as
, when
or
, when
. The generalized problem is then reduced to a standard symmetric eigenvalue problem
which is solved for the eigenvalues and, optionally, the eigenvectors; the eigenvectors are then backtransformed to give the eigenvectors of the original problem.
For the problem
, the eigenvectors are normalized so that the matrix of eigenvectors,
, satisfies
where
is the diagonal matrix whose diagonal elements are the eigenvalues. For the problem
we correspondingly have
and for
we have
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
Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore
Parameters
Compulsory Input Parameters
- 1:
– int64int32nag_int scalar
-
Specifies the problem type to be solved.
- .
- .
- .
Constraint:
, or .
- 2:
– string (length ≥ 1)
-
Indicates whether eigenvectors are computed.
- Only eigenvalues are computed.
- Eigenvalues and eigenvectors are computed.
Constraint:
or .
- 3:
– string (length ≥ 1)
-
If
, the upper triangles of
and
are stored.
If , the lower triangles of and are stored.
Constraint:
or .
- 4:
– int64int32nag_int scalar
-
, the order of the matrices and .
Constraint:
.
- 5:
– complex array
-
The dimension of the array
ap
must be at least
The upper or lower triangle of the
by
Hermitian matrix
, packed by columns.
More precisely,
- if , the upper triangle of must be stored with element in for ;
- if , the lower triangle of must be stored with element in for .
- 6:
– complex array
-
The dimension of the array
bp
must be at least
The upper or lower triangle of the
by
Hermitian matrix
, packed by columns.
More precisely,
- if , the upper triangle of must be stored with element in for ;
- if , the lower triangle of must be stored with element in for .
Optional Input Parameters
None.
Output Parameters
- 1:
– complex array
-
The dimension of the array
ap will be
The contents of
ap are destroyed.
- 2:
– complex array
-
The dimension of the array
bp will be
The triangular factor or from the Cholesky factorization or , in the same storage format as .
- 3:
– double array
-
The eigenvalues in ascending order.
- 4:
– complex array
-
The first dimension,
, of the array
z will be
- if , ;
- otherwise .
The second dimension of the array
z will be
if
and
otherwise.
If
,
z contains the matrix
of eigenvectors. The eigenvectors are normalized as follows:
- if or , ;
- if , .
If
,
z is not referenced.
- 5:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
Error Indicators and Warnings
-
If , parameter had an illegal value on entry. The parameters are numbered as follows:
1:
itype, 2:
jobz, 3:
uplo, 4:
n, 5:
ap, 6:
bp, 7:
w, 8:
z, 9:
ldz, 10:
work, 11:
rwork, 12:
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.
-
-
nag_lapack_zpptrf (f07gr) or
nag_lapack_zhpev (f08gn) returned an error code:
|
if , nag_lapack_zhpev (f08gn) failed to converge; off-diagonal elements of an intermediate tridiagonal form did not converge to zero; |
|
if , for , then the leading minor of order of is not positive definite. The factorization of could not be completed and no eigenvalues or eigenvectors were computed. |
Accuracy
If
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
differ widely in magnitude the eigenvalues and eigenvectors may be less sensitive than the condition of
would suggest. See Section 4.10 of
Anderson et al. (1999) for details of the error bounds.
The example program below illustrates the computation of approximate error bounds.
Further Comments
The total number of floating-point operations is proportional to .
The real analogue of this function is
nag_lapack_dspgv (f08ta).
Example
This example finds all the eigenvalues and eigenvectors of the generalized Hermitian eigenproblem
, where
and
together with an estimate of the condition number of
, and approximate error bounds for the computed eigenvalues and eigenvectors.
The example program for
nag_lapack_zhpgvd (f08tq) illustrates solving a generalized symmetric eigenproblem of the form
.
Open in the MATLAB editor:
f08tn_example
function f08tn_example
fprintf('f08tn example results\n\n');
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];
itype = int64(1);
jobz = 'No vectors';
[~, up, w, z, info] = f08tn( ...
itype, jobz, uplo, n, ap, bp);
disp('Eigenvalues');
disp(w');
[a, ap, ifail] = f01zb( ...
'Unpack', uplo, 'N', complex(zeros(n,n)), ap);
[b, bp, ifail] = f01zb( ...
'Unpack', uplo, 'N', complex(zeros(n,n)), bp);
anorm = norm(a + a' - diag(diag(a)),1);
bnorm = norm(b + b' - diag(diag(b)),1);
[rcond, info] = f07uu( ...
'1', uplo, 'N', n, up);
rcondb = rcond^2;
fprintf('Estimate of reciprocal condition number for B\n%12.1e\n', rcondb);
t1 = x02aj/rcondb;
t2 = anorm/bnorm;
errbnd(1:n) = t1*t2 + t1.*abs(w);
fprintf('\n');
disp('Error estimate for the eigenvalues');
fprintf('%12.1e',errbnd);
fprintf('\n');
f08tn example results
Eigenvalues
-5.9990 -2.9936 0.5047 3.9990
Estimate of reciprocal condition number for B
2.5e-03
Error estimate for the eigenvalues
3.4e-13 2.0e-13 9.6e-14 2.5e-13
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015