PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_dstevx (f08jb)
Purpose
nag_lapack_dstevx (f08jb) computes selected eigenvalues and, optionally, eigenvectors of a real symmetric tridiagonal matrix . Eigenvalues and eigenvectors can be selected by specifying either a range of values or a range of indices for the desired eigenvalues.
Syntax
[
d,
e,
m,
w,
z,
jfail,
info] = f08jb(
jobz,
range,
d,
e,
vl,
vu,
il,
iu,
abstol, 'n',
n)
[
d,
e,
m,
w,
z,
jfail,
info] = nag_lapack_dstevx(
jobz,
range,
d,
e,
vl,
vu,
il,
iu,
abstol, 'n',
n)
Description
nag_lapack_dstevx (f08jb) computes the required eigenvalues and eigenvectors of by reducing the tridiagonal matrix to diagonal form using the algorithm. Bisection is used to determine selected 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
Demmel J W and Kahan W (1990) Accurate singular values of bidiagonal matrices SIAM J. Sci. Statist. Comput. 11 873–912
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
, all eigenvalues will be found.
If , all eigenvalues in the half-open interval will be found.
If
, the
ilth to
iuth eigenvalues will be found.
Constraint:
, or .
- 3:
– double array
-
The dimension of the array
d
must be at least
The diagonal elements of the tridiagonal matrix .
- 4:
– double array
-
The dimension of the array
e
must be at least
The subdiagonal elements of the tridiagonal matrix .
- 5:
– double scalar
- 6:
– double scalar
-
If
, the lower and upper bounds of the interval to be searched for eigenvalues.
If
or
,
vl and
vu are not referenced.
Constraint:
if , .
- 7:
– int64int32nag_int scalar
- 8:
– int64int32nag_int scalar
-
If
, the indices (in ascending order) of the smallest and largest eigenvalues to be returned.
If
or
,
il and
iu are not referenced.
Constraints:
- if and , and ;
- if and , .
- 9:
– double scalar
-
The absolute error tolerance for the eigenvalues. An approximate eigenvalue is accepted as converged when it is determined to lie in an interval
of width less than or equal to
where
is the
machine precision. If
abstol is less than or equal to zero, then
will be used in its place. Eigenvalues will be computed most accurately when
abstol is set to twice the underflow threshold
, not zero. If this function returns with
, indicating that some eigenvectors did not converge, try setting
abstol to
. See
Demmel and Kahan (1990).
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the dimension of the array
d.
, the order of the matrix.
Constraint:
.
Output Parameters
- 1:
– double array
-
The dimension of the array
d will be
May be multiplied by a constant factor chosen to avoid over/underflow in computing the eigenvalues.
- 2:
– double array
-
The dimension of the array
e will be
May be multiplied by a constant factor chosen to avoid over/underflow in computing the eigenvalues.
- 3:
– int64int32nag_int scalar
-
The total number of eigenvalues found.
.
If , .
If , .
- 4:
– double array
-
The first
m elements contain the selected eigenvalues in ascending order.
- 5:
– double 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
, then
- if , the first m columns of contain the orthonormal eigenvectors of the matrix corresponding to the selected eigenvalues, with the th column of holding the eigenvector associated with ;
- if an eigenvector fails to converge (), then that column of contains the latest approximation to the eigenvector, and the index of the eigenvector is returned in jfail.
If
,
z is not referenced.
- 6:
– int64int32nag_int array
-
The dimension of the array
jfail will be
If
, then
- if , the first m elements of jfail are zero;
- if , jfail contains the indices of the eigenvectors that failed to converge.
If
,
jfail is not referenced.
- 7:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
Error Indicators and Warnings
Cases prefixed with W are classified as warnings and
do not generate an error of type NAG:error_n. See nag_issue_warnings.
-
If , argument had an illegal value. An explanatory message is output, and execution of the program is terminated.
- W
-
The algorithm failed to converge;
eigenvectors did not converge. Their indices are stored in array
jfail.
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 total number of floating-point operations is proportional to if and is proportional to if and , otherwise the number of floating-point operations will depend upon the number of computed eigenvectors.
Example
This example finds the eigenvalues in the half-open interval
, and the corresponding eigenvectors, of the symmetric tridiagonal matrix
Open in the MATLAB editor:
f08jb_example
function f08jb_example
fprintf('f08jb example results\n\n');
d = [1; 4; 9; 16];
e = [1; 2; 3];
jobz = 'Vectors';
range = 'Values in range';
vl = 0;
vu = 5;
il = int64(0);
iu = int64(0);
abstol = 0;
[~, ~, m, w, z, jfail, info] = ...
f08jb( ...
jobz, range, d, e, vl, vu, il, iu, abstol);
for j = 1:m
[~,k] = max(abs(z(:,j)));
if z(k,j) < 0;
z(:,j) = -z(:,j);
end
end
disp(' Eigenvalues of A in range:');
disp(w(1:m));
disp(' Corresponding eigenvectors:');
disp(z);
f08jb example results
Eigenvalues of A in range:
0.6476
3.5470
Corresponding eigenvectors:
0.9396 0.3388
-0.3311 0.8628
0.0853 -0.3648
-0.0167 0.0879
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015