1SLARRC(1) LAPACK auxiliary routine (version 3.1) SLARRC(1)
2
3
4
6 SLARRC - number of eigenvalues of the symmetric tridiagonal matrix T
7 that are in the interval (VL,VU] if JOBT = 'T', and of L D L^T if JOBT
8 = 'L'
9
11 SUBROUTINE SLARRC( JOBT, N, VL, VU, D, E, PIVMIN, EIGCNT, LCNT, RCNT,
12 INFO )
13
14 CHARACTER JOBT
15
16 INTEGER EIGCNT, INFO, LCNT, N, RCNT
17
18 REAL PIVMIN, VL, VU
19
20 REAL D( * ), E( * )
21
23 Find the number of eigenvalues of the symmetric tridiagonal matrix T
24 that are in the interval (VL,VU] if JOBT = 'T', and of L D L^T if JOBT
25 = 'L'.
26
27
29 JOBT (input) CHARACTER*1
30 = 'T': Compute Sturm count for matrix T.
31 = 'L': Compute Sturm count for matrix L D L^T.
32
33 N (input) INTEGER
34 The order of the matrix. N > 0.
35
36 VL (input) DOUBLE PRECISION
37 VU (input) DOUBLE PRECISION The lower and upper bounds for
38 the eigenvalues.
39
40 D (input) DOUBLE PRECISION array, dimension (N)
41 JOBT = 'T': The N diagonal elements of the tridiagonal matrix
42 T.
43 JOBT = 'L': The N diagonal elements of the diagonal matrix D.
44
45 E (input) DOUBLE PRECISION array, dimension (N)
46 JOBT = 'T': The N-1 offdiagonal elements of the matrix T.
47 JOBT = 'L': The N-1 offdiagonal elements of the matrix L.
48
49 PIVMIN (input) DOUBLE PRECISION
50 The minimum pivot in the Sturm sequence for T.
51
52 EIGCNT (output) INTEGER
53 The number of eigenvalues of the symmetric tridiagonal matrix T
54 that are in the interval (VL,VU]
55
56 LCNT (output) INTEGER
57 RCNT (output) INTEGER The left and right negcounts of the
58 interval.
59
60 INFO (output) INTEGER
61
63 Based on contributions by
64 Beresford Parlett, University of California, Berkeley, USA
65 Jim Demmel, University of California, Berkeley, USA
66 Inderjit Dhillon, University of Texas, Austin, USA
67 Osni Marques, LBNL/NERSC, USA
68 Christof Voemel, University of California, Berkeley, USA
69
70
71
72
73 LAPACK auxiliary routine (versionNo3v.e1m)ber 2006 SLARRC(1)