1DSTERF(1) LAPACK routine (version 3.1) DSTERF(1)
2
3
4
6 DSTERF - all eigenvalues of a symmetric tridiagonal matrix using the
7 Pal-Walker-Kahan variant of the QL or QR algorithm
8
10 SUBROUTINE DSTERF( N, D, E, INFO )
11
12 INTEGER INFO, N
13
14 DOUBLE PRECISION D( * ), E( * )
15
17 DSTERF computes all eigenvalues of a symmetric tridiagonal matrix using
18 the Pal-Walker-Kahan variant of the QL or QR algorithm.
19
20
22 N (input) INTEGER
23 The order of the matrix. N >= 0.
24
25 D (input/output) DOUBLE PRECISION array, dimension (N)
26 On entry, the n diagonal elements of the tridiagonal matrix.
27 On exit, if INFO = 0, the eigenvalues in ascending order.
28
29 E (input/output) DOUBLE PRECISION array, dimension (N-1)
30 On entry, the (n-1) subdiagonal elements of the tridiagonal
31 matrix. On exit, E has been destroyed.
32
33 INFO (output) INTEGER
34 = 0: successful exit
35 < 0: if INFO = -i, the i-th argument had an illegal value
36 > 0: the algorithm failed to find all of the eigenvalues in a
37 total of 30*N iterations; if INFO = i, then i elements of E
38 have not converged to zero.
39
40
41
42 LAPACK routine (version 3.1) November 2006 DSTERF(1)