F08JCF (DSTEVD) (PDF version)
F08 Chapter Contents
F08 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

F08JCF (DSTEVD)

Note:  before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.
Warning. The specification of the parameters LWORK and LIWORK changed at Mark 20 in the case where JOB='V' and N>1: the minimum dimension of the array WORK has been reduced whereas the minimum dimension of the array IWORK has been increased.

+ Contents

    1  Purpose
    7  Accuracy

1  Purpose

F08JCF (DSTEVD) computes all the eigenvalues and, optionally, all the eigenvectors of a real symmetric tridiagonal 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 QL or QR algorithm.

2  Specification

SUBROUTINE F08JCF ( JOB, N, D, E, Z, LDZ, WORK, LWORK, IWORK, LIWORK, INFO)
INTEGER  N, LDZ, LWORK, IWORK(max(1,LIWORK)), LIWORK, INFO
REAL (KIND=nag_wp)  D(*), E(*), Z(LDZ,*), WORK(max(1,LWORK))
CHARACTER(1)  JOB
The routine may be called by its LAPACK name dstevd.

3  Description

F08JCF (DSTEVD) computes all the eigenvalues and, optionally, all the eigenvectors of a real symmetric tridiagonal matrix T. In other words, it can compute the spectral factorization of T as
T=ZΛZT,
where Λ is a diagonal matrix whose diagonal elements are the eigenvalues λi, and Z is the orthogonal matrix whose columns are the eigenvectors zi. Thus
Tzi=λizi,  i=1,2,,n.

4  References

Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore

5  Parameters

1:     JOB – CHARACTER(1)Input
On entry: indicates whether eigenvectors are computed.
JOB='N'
Only eigenvalues are computed.
JOB='V'
Eigenvalues and eigenvectors are computed.
Constraint: JOB='N' or 'V'.
2:     N – INTEGERInput
On entry: n, the order of the matrix T.
Constraint: N0.
3:     D(*) – REAL (KIND=nag_wp) arrayInput/Output
Note: the dimension of the array D must be at least max1,N.
On entry: the n diagonal elements of the tridiagonal matrix T.
On exit: the eigenvalues of the matrix T in ascending order.
4:     E(*) – REAL (KIND=nag_wp) arrayInput/Output
Note: the dimension of the array E must be at least max1,N.
On entry: the n-1 off-diagonal elements of the tridiagonal matrix T. The nth element of this array is used as workspace.
On exit: E is overwritten with intermediate results.
5:     Z(LDZ,*) – REAL (KIND=nag_wp) arrayOutput
Note: the second dimension of the array Z must be at least max1,N if JOB='V' and at least 1 if JOB='N'.
On exit: if JOB='V', Z is overwritten by the orthogonal matrix Z which contains the eigenvectors of T.
If JOB='N', Z is not referenced.
6:     LDZ – INTEGERInput
On entry: the first dimension of the array Z as declared in the (sub)program from which F08JCF (DSTEVD) is called.
Constraints:
  • if JOB='V', LDZ max1,N ;
  • if JOB='N', LDZ1.
7:     WORK(max1,LWORK) – REAL (KIND=nag_wp) arrayWorkspace
On exit: if INFO=0, WORK1 contains the required minimal size of LWORK.
8:     LWORK – INTEGERInput
On entry: the dimension of the array WORK as declared in the (sub)program from which F08JCF (DSTEVD) is called.
If LWORK=-1, a workspace query is assumed; the routine only calculates the minimum dimension of the WORK array, returns this value as the first entry of the WORK array, and no error message related to LWORK is issued.
Constraints:
  • if JOB='N' or N1, LWORK1 or LWORK=-1;
  • if JOB='V' and N>1, LWORKN2+4×N+1 or LWORK=-1.
9:     IWORK(max1,LIWORK) – INTEGER arrayWorkspace
On exit: if INFO=0, IWORK1 contains the required minimal size of LIWORK.
10:   LIWORK – INTEGERInput
On entry: the dimension of the array IWORK as declared in the (sub)program from which F08JCF (DSTEVD) is called.
If LIWORK=-1, a workspace query is assumed; the routine only calculates the minimum dimension of the IWORK array, returns this value as the first entry of the IWORK array, and no error message related to LIWORK is issued.
Constraints:
  • if JOB='N' or N1, LIWORK1 or LIWORK=-1;
  • if JOB='V' and N>1, LIWORK5×N+3 or LIWORK=-1.
11:   INFO – INTEGEROutput
On exit: INFO=0 unless the routine detects an error (see Section 6).

6  Error Indicators and Warnings

Errors or warnings detected by the routine:
INFO<0
If INFO=-i, argument i had an illegal value. An explanatory message is output, and execution of the program is terminated.
INFO>0
if INFO=i and JOB='N', the algorithm failed to converge; i elements of an intermediate tridiagonal form did not converge to zero; if INFO=i and JOB='V', then the algorithm failed to compute an eigenvalue while working on the submatrix lying in rows and column i/N+1 through i mod N+1.

7  Accuracy

The computed eigenvalues and eigenvectors are exact for a nearby matrix T+E, where
E2 = Oε T2 ,
and ε is the machine precision.
If λi is an exact eigenvalue and λ~i is the corresponding computed value, then
λ~i - λi c n ε T2 ,
where cn is a modestly increasing function of n.
If zi is the corresponding exact eigenvector, and z~i is the corresponding computed eigenvector, then the angle θz~i,zi between them is bounded as follows:
θ z~i,zi c n ε T2 min ij λi - λj .
Thus the accuracy of a computed eigenvector depends on the gap between its eigenvalue and all the other eigenvalues.

8  Further Comments

There is no complex analogue of this routine.

9  Example

This example computes all the eigenvalues and eigenvectors of the symmetric tridiagonal matrix T, where
T = 1.0 1.0 0.0 0.0 1.0 4.0 2.0 0.0 0.0 2.0 9.0 3.0 0.0 0.0 3.0 16.0 .

9.1  Program Text

Program Text (f08jcfe.f90)

9.2  Program Data

Program Data (f08jcfe.d)

9.3  Program Results

Program Results (f08jcfe.r)


F08JCF (DSTEVD) (PDF version)
F08 Chapter Contents
F08 Chapter Introduction
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2012