PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_zhbgvd (f08uq)
Purpose
nag_lapack_zhbgvd (f08uq) computes all the eigenvalues and, optionally, the eigenvectors of a complex generalized Hermitian-definite banded eigenproblem, of the form
where
and
are Hermitian and banded, and
is also positive definite. If eigenvectors are desired, it uses a divide-and-conquer algorithm.
Syntax
[
ab,
bb,
w,
z,
info] = f08uq(
jobz,
uplo,
ka,
kb,
ab,
bb, 'n',
n)
[
ab,
bb,
w,
z,
info] = nag_lapack_zhbgvd(
jobz,
uplo,
ka,
kb,
ab,
bb, 'n',
n)
Description
The generalized Hermitian-definite band problem
is first reduced to a standard band Hermitian problem
where
is a Hermitian band matrix, using Wilkinson's modification to Crawford's algorithm (see
Crawford (1973) and
Wilkinson (1977)).
The Hermitian eigenvalue problem is then solved for the eigenvalues and the eigenvectors, if required, which are then backtransformed to the eigenvectors of the original problem.
The eigenvectors are normalized so that the matrix of eigenvectors,
, satisfies
where
is the diagonal matrix whose diagonal elements are the eigenvalues.
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
Crawford C R (1973) Reduction of a band-symmetric generalized eigenvalue problem Comm. ACM 16 41–44
Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore
Wilkinson J H (1977) Some recent advances in numerical linear algebra The State of the Art in Numerical Analysis (ed D A H Jacobs) Academic Press
Parameters
Compulsory Input Parameters
- 1:
– string (length ≥ 1)
-
Indicates whether eigenvectors are computed.
- Only eigenvalues are computed.
- Eigenvalues and eigenvectors are computed.
Constraint:
or .
- 2:
– string (length ≥ 1)
-
If
, the upper triangles of
and
are stored.
If , the lower triangles of and are stored.
Constraint:
or .
- 3:
– int64int32nag_int scalar
-
If
, the number of superdiagonals,
, of the matrix
.
If , the number of subdiagonals, , of the matrix .
Constraint:
.
- 4:
– int64int32nag_int scalar
-
If
, the number of superdiagonals,
, of the matrix
.
If , the number of subdiagonals, , of the matrix .
Constraint:
.
- 5:
– complex array
-
The first dimension of the array
ab must be at least
.
The second dimension of the array
ab must be at least
.
The upper or lower triangle of the
by
Hermitian band matrix
.
The matrix is stored in rows
to
, more precisely,
- if , the elements of the upper triangle of within the band must be stored with element in ;
- if , the elements of the lower triangle of within the band must be stored with element in
- 6:
– complex array
-
The first dimension of the array
bb must be at least
.
The second dimension of the array
bb must be at least
.
The upper or lower triangle of the
by
Hermitian band matrix
.
The matrix is stored in rows
to
, more precisely,
- if , the elements of the upper triangle of within the band must be stored with element in ;
- if , the elements of the lower triangle of within the band must be stored with element in
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the second dimension of the arrays
ab,
bb.
, the order of the matrices and .
Constraint:
.
Output Parameters
- 1:
– complex array
-
The first dimension of the array
ab will be
.
The second dimension of the array
ab will be
.
The contents of
ab are overwritten.
- 2:
– complex array
-
The first dimension of the array
bb will be
.
The second dimension of the array
bb will be
.
The factor
from the split Cholesky factorization
, as returned by
nag_lapack_zpbstf (f08ut).
- 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, with the
th column of
holding the eigenvector associated with
. The eigenvectors are normalized so that
.
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:
jobz, 2:
uplo, 3:
n, 4:
ka, 5:
kb, 6:
ab, 7:
ldab, 8:
bb, 9:
ldbb, 10:
w, 11:
z, 12:
ldz, 13:
work, 14:
lwork, 15:
rwork, 16:
lrwork, 17:
iwork, 18:
liwork, 19:
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.
-
-
If and , the algorithm failed to converge; off-diagonal elements of an intermediate tridiagonal form did not converge to zero.
If
and
, if
, for
, then
nag_lapack_zpbstf (f08ut) returned
:
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.
Further Comments
The total number of floating-point operations is proportional to if and, assuming that , is approximately proportional to otherwise.
The real analogue of this function is
nag_lapack_dsbgvd (f08uc).
Example
This example finds all the eigenvalues of the generalized band Hermitian eigenproblem
, where
and
Open in the MATLAB editor:
f08uq_example
function f08uq_example
fprintf('f08uq example results\n\n');
uplo = 'U';
ka = int64(2);
ab = [ 0, 0 + 0i, -1.40 + 0.25i, -0.67 + 0.34i;
0 + 0i, 1.94 - 2.10i, -0.82 - 0.89i, -1.10 - 0.16i;
-1.13 + 0i, -1.91 + 0i, -1.87 + 0i, 0.50 + 0i];
kb = int64(1);
bb = [ 0, 1.08 - 1.73i, -0.04 + 0.29i, -0.33 + 2.24i;
9.89 + 0i, 1.69 + 0i, 2.65 + 0i, 2.17 + 0i];
jobz = 'No vectors';
[~, ~, w, ~, info] = f08uq( ...
jobz, uplo, ka, kb, ab, bb);
disp('Eigenvalues');
disp(w');
f08uq example results
Eigenvalues
-6.6089 -2.0416 0.1603 1.7712
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015