PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_zhpev (f08gn)
Purpose
nag_lapack_zhpev (f08gn) computes all the eigenvalues and, optionally, all the eigenvectors of a complex by Hermitian matrix in packed storage.
Syntax
Description
The Hermitian matrix is first reduced to real tridiagonal form, using unitary similarity transformations, and then the algorithm is applied to the tridiagonal matrix to compute the eigenvalues and (optionally) the eigenvectors.
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)
-
If
, the upper triangular part of
is stored.
If , the lower triangular part of is stored.
Constraint:
or .
- 3:
– int64int32nag_int scalar
-
, the order of the matrix .
Constraint:
.
- 4:
– 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 .
Optional Input Parameters
None.
Output Parameters
- 1:
– complex array
-
The dimension of the array
ap will be
ap stores the values generated during the reduction to tridiagonal form. The elements of the diagonal and the off-diagonal of the tridiagonal matrix overwrite the corresponding elements of
.
- 2:
– double array
-
The eigenvalues in ascending order.
- 3:
– 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 orthonormal eigenvectors of the matrix
, with the
th column of
holding the eigenvector associated with
.
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:
jobz, 2:
uplo, 3:
n, 4:
ap, 5:
w, 6:
z, 7:
ldz, 8:
work, 9:
rwork, 10:
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 , the algorithm failed to converge; off-diagonal elements of an intermediate tridiagonal form did not converge to zero.
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
Each eigenvector is normalized so that the element of largest absolute value is real.
The total number of floating-point operations is proportional to .
The real analogue of this function is
nag_lapack_dspev (f08ga).
Example
This example finds all the eigenvalues of the Hermitian matrix
together with approximate error bounds for the computed eigenvalues.
Open in the MATLAB editor:
f08gn_example
function f08gn_example
fprintf('f08gn example results\n\n');
uplo = 'U';
n = int64(4);
ap = [1 + 0i;
2 - 1i; 2 + 0i;
3 - 1i; 3 - 2i; 3 + 0i;
4 - 1i; 4 - 2i; 4 - 3i; 4 + 0i];
jobz = 'No vectors';
[apf, w, ~, info] = f08gn( ...
jobz, uplo, n, ap);
disp('Eigenvalues');
disp(w');
errbnd = x02aj*max(abs(w(1)),abs(w(end)));
disp('Error estimate for the eigenvalues');
fprintf('%11.1e\n',errbnd);
f08gn example results
Eigenvalues
-4.2443 -0.6886 1.1412 13.7916
Error estimate for the eigenvalues
1.5e-15
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015