PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_dsbevd (f08hc)
Purpose
nag_lapack_dsbevd (f08hc) computes all the eigenvalues and, optionally, all the eigenvectors of a real symmetric band 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_dsbevd (f08hc) computes all the eigenvalues and, optionally, all the eigenvectors of a real symmetric band matrix
.
In other words, it can compute the spectral factorization of
as
where
is a diagonal matrix whose diagonal elements are the eigenvalues
, and
is the orthogonal 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:
– int64int32nag_int scalar
-
If
, the number of superdiagonals,
, of the matrix
.
If , the number of subdiagonals, , of the matrix .
Constraint:
.
- 4:
– double 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
symmetric 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 first dimension of the array
ab and the second dimension of the array
ab. (An error is raised if these dimensions are not equal.)
, the order of the matrix .
Constraint:
.
Output Parameters
- 1:
– double array
-
The first dimension of the array
ab will be
.
The second dimension of the array
ab will be
.
ab stores values generated during the reduction to tridiagonal form.
The first superdiagonal or subdiagonal and the diagonal of the tridiagonal matrix
are returned in
ab using the same storage format as described above.
- 2:
– double array
-
The dimension of the array
w will be
The eigenvalues of the matrix in ascending order.
- 3:
– double array
-
The first dimension,
, of the array
z will be
- if , ;
- if , .
The second dimension of the array
z will be
if
and at least
if
.
If
,
z stores the orthogonal matrix
which contains the eigenvectors of
. The
th column of
contains the eigenvector which corresponds to the eigenvalue
.
If
,
z is not referenced.
- 4:
– 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:
kd, 5:
ab, 6:
ldab, 7:
w, 8:
z, 9:
ldz, 10:
work, 11:
lwork, 12:
iwork, 13:
liwork, 14:
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 complex analogue of this function is
nag_lapack_zhbevd (f08hq).
Example
This example computes all the eigenvalues and eigenvectors of the symmetric band matrix
, where
Open in the MATLAB editor:
f08hc_example
function f08hc_example
fprintf('f08hc example results\n\n');
uplo = 'L';
kd = int64(2);
n = 5;
ab = [1, 2, 3, 4, 5;
2, 3, 4, 5, 0;
3, 4, 5, 0, 0];
job = 'V';
[abf, w, z, info] = f08hc( ...
job, uplo, kd, ab);
for j = 1:n
[~,k] = max(abs(z(:,j)));
if z(k,j) < 0;
z(:,j) = -z(:,j);
end
end
disp('Eigenvalues');
disp(w');
[ifail] = x04ca( ...
'General', ' ', z, 'Eigenvectors');
f08hc example results
Eigenvalues
-3.2474 -2.6633 1.7511 4.1599 14.9997
Eigenvectors
1 2 3 4 5
1 0.0394 0.6238 0.5635 -0.5165 0.1582
2 0.5721 -0.2575 -0.3896 -0.5955 0.3161
3 -0.4372 -0.5900 0.4008 -0.1470 0.5277
4 -0.4424 0.4308 -0.5581 0.0470 0.5523
5 0.5332 0.1039 0.2421 0.5956 0.5400
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015