PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_zheevd (f08fq)
Purpose
nag_lapack_zheevd (f08fq) computes all the eigenvalues and, optionally, all the eigenvectors of a complex Hermitian matrix.
If the eigenvectors are requested, then it uses a divide-and-conquer algorithm to compute eigenvalues and eigenvectors. However, if only eigenvalues are required, then it uses the Pal–Walker–Kahan variant of the or algorithm.
Syntax
Description
nag_lapack_zheevd (f08fq) computes all the eigenvalues and, optionally, all the eigenvectors of a complex Hermitian matrix
.
In other words, it can compute the spectral factorization of
as
where
is a real diagonal matrix whose diagonal elements are the eigenvalues
, and
is the (complex) unitary matrix whose columns are the eigenvectors
. Thus
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:
– string (length ≥ 1)
-
Indicates whether eigenvectors are computed.
- Only eigenvalues are computed.
- Eigenvalues and eigenvectors are computed.
Constraint:
or .
- 2:
– string (length ≥ 1)
-
Indicates whether the upper or lower triangular part of
is stored.
- The upper triangular part of is stored.
- The lower triangular part of is stored.
Constraint:
or .
- 3:
– complex array
-
The first dimension of the array
a must be at least
.
The second dimension of the array
a must be at least
.
The
by
Hermitian matrix
.
- If , the upper triangular part of must be stored and the elements of the array below the diagonal are not referenced.
- If , the lower triangular part of must be stored and the elements of the array above the diagonal are not referenced.
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the first dimension of the array
a and the second dimension of the array
a.
, the order of the matrix .
Constraint:
.
Output Parameters
- 1:
– complex array
-
The first dimension of the array
a will be
.
The second dimension of the array
a will be
.
If
,
a stores the unitary matrix
which contains the eigenvectors of
.
- 2:
– double array
-
The dimension of the array
w will be
The eigenvalues of the matrix in ascending order.
- 3:
– 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:
job, 2:
uplo, 3:
n, 4:
a, 5:
lda, 6:
w, 7:
work, 8:
lwork, 9:
rwork, 10:
lrwork, 11:
iwork, 12:
liwork, 13:
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; elements of an intermediate tridiagonal form did not converge to zero; if and , then the algorithm failed to compute an eigenvalue while working on the submatrix lying in rows and column through .
Accuracy
The computed eigenvalues and eigenvectors are exact for a nearby matrix
, where
and
is the
machine precision. See Section 4.7 of
Anderson et al. (1999) for further details.
Further Comments
The real analogue of this function is
nag_lapack_dsyevd (f08fc).
Example
This example computes all the eigenvalues and eigenvectors of the Hermitian matrix
, where
The example program for nag_lapack_zheevd (f08fq) illustrates the computation of error bounds for the eigenvalues and eigenvectors.
Open in the MATLAB editor:
f08fq_example
function f08fq_example
fprintf('f08fq example results\n\n');
uplo = 'L';
n = 4;
a = [ 1 + 0i, 0 + 0i, 0 + 0i, 0 + 0i;
2 + 1i, 2 + 0i, 0 + 0i, 0 + 0i;
3 + 1i, 3 + 2i, 3 + 0i, 0 + 0i;
4 + 1i, 4 + 2i, 4 + 3i, 4 + 0i];
job = 'Vectors';
[z, w, info] = f08fq( ...
job, uplo, a);
for i = 1:n
[~,k] = max(abs(real(z(:,i)))+abs(imag(z(:,i))));
z(:,i) = z(:,i)*conj(z(k,i))/abs(z(k,i));
end
fprintf('Eigenvalues:\n');
disp(w);
ncols = int64(80);
indent = int64(0);
[ifail] = x04db( ...
'General', ' ', z, 'Bracketed', 'F7.4', ...
'Eigenvectors', 'Integer', 'Integer', ...
ncols, indent);
f08fq example results
Eigenvalues:
-4.2443
-0.6886
1.1412
13.7916
Eigenvectors
1 2 3 4
1 (-0.3839,-0.2941) ( 0.6470, 0.0000) (-0.4326, 0.1068) ( 0.3309,-0.1986)
2 (-0.4512, 0.1102) (-0.4984,-0.1130) (-0.1590,-0.5480) ( 0.3728,-0.2419)
3 ( 0.0263, 0.4857) ( 0.2949, 0.3165) ( 0.5491, 0.0000) ( 0.4870,-0.1938)
4 ( 0.5602, 0.0000) (-0.2241,-0.2878) (-0.2865, 0.3037) ( 0.6155, 0.0000)
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015