LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
subroutine dlarrr ( integer  N,
double precision, dimension( * )  D,
double precision, dimension( * )  E,
integer  INFO 
)

DLARRR performs tests to decide whether the symmetric tridiagonal matrix T warrants expensive computations which guarantee high relative accuracy in the eigenvalues.

Download DLARRR + dependencies [TGZ] [ZIP] [TXT]

Purpose:
 Perform tests to decide whether the symmetric tridiagonal matrix T
 warrants expensive computations which guarantee high relative accuracy
 in the eigenvalues.
Parameters
[in]N
          N is INTEGER
          The order of the matrix. N > 0.
[in]D
          D is DOUBLE PRECISION array, dimension (N)
          The N diagonal elements of the tridiagonal matrix T.
[in,out]E
          E is DOUBLE PRECISION array, dimension (N)
          On entry, the first (N-1) entries contain the subdiagonal
          elements of the tridiagonal matrix T; E(N) is set to ZERO.
[out]INFO
          INFO is INTEGER
          INFO = 0(default) : the matrix warrants computations preserving
                              relative accuracy.
          INFO = 1          : the matrix warrants computations guaranteeing
                              only absolute accuracy.
Author
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.
Date
September 2012
Contributors:
Beresford Parlett, University of California, Berkeley, USA
Jim Demmel, University of California, Berkeley, USA
Inderjit Dhillon, University of Texas, Austin, USA
Osni Marques, LBNL/NERSC, USA
Christof Voemel, University of California, Berkeley, USA

Definition at line 96 of file dlarrr.f.

96 *
97 * -- LAPACK auxiliary routine (version 3.4.2) --
98 * -- LAPACK is a software package provided by Univ. of Tennessee, --
99 * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
100 * September 2012
101 *
102 * .. Scalar Arguments ..
103  INTEGER n, info
104 * ..
105 * .. Array Arguments ..
106  DOUBLE PRECISION d( * ), e( * )
107 * ..
108 *
109 *
110 * =====================================================================
111 *
112 * .. Parameters ..
113  DOUBLE PRECISION zero, relcond
114  parameter ( zero = 0.0d0,
115  $ relcond = 0.999d0 )
116 * ..
117 * .. Local Scalars ..
118  INTEGER i
119  LOGICAL yesrel
120  DOUBLE PRECISION eps, safmin, smlnum, rmin, tmp, tmp2,
121  $ offdig, offdig2
122 
123 * ..
124 * .. External Functions ..
125  DOUBLE PRECISION dlamch
126  EXTERNAL dlamch
127 * ..
128 * .. Intrinsic Functions ..
129  INTRINSIC abs
130 * ..
131 * .. Executable Statements ..
132 *
133 * As a default, do NOT go for relative-accuracy preserving computations.
134  info = 1
135 
136  safmin = dlamch( 'Safe minimum' )
137  eps = dlamch( 'Precision' )
138  smlnum = safmin / eps
139  rmin = sqrt( smlnum )
140 
141 * Tests for relative accuracy
142 *
143 * Test for scaled diagonal dominance
144 * Scale the diagonal entries to one and check whether the sum of the
145 * off-diagonals is less than one
146 *
147 * The sdd relative error bounds have a 1/(1- 2*x) factor in them,
148 * x = max(OFFDIG + OFFDIG2), so when x is close to 1/2, no relative
149 * accuracy is promised. In the notation of the code fragment below,
150 * 1/(1 - (OFFDIG + OFFDIG2)) is the condition number.
151 * We don't think it is worth going into "sdd mode" unless the relative
152 * condition number is reasonable, not 1/macheps.
153 * The threshold should be compatible with other thresholds used in the
154 * code. We set OFFDIG + OFFDIG2 <= .999 =: RELCOND, it corresponds
155 * to losing at most 3 decimal digits: 1 / (1 - (OFFDIG + OFFDIG2)) <= 1000
156 * instead of the current OFFDIG + OFFDIG2 < 1
157 *
158  yesrel = .true.
159  offdig = zero
160  tmp = sqrt(abs(d(1)))
161  IF (tmp.LT.rmin) yesrel = .false.
162  IF(.NOT.yesrel) GOTO 11
163  DO 10 i = 2, n
164  tmp2 = sqrt(abs(d(i)))
165  IF (tmp2.LT.rmin) yesrel = .false.
166  IF(.NOT.yesrel) GOTO 11
167  offdig2 = abs(e(i-1))/(tmp*tmp2)
168  IF(offdig+offdig2.GE.relcond) yesrel = .false.
169  IF(.NOT.yesrel) GOTO 11
170  tmp = tmp2
171  offdig = offdig2
172  10 CONTINUE
173  11 CONTINUE
174 
175  IF( yesrel ) THEN
176  info = 0
177  RETURN
178  ELSE
179  ENDIF
180 *
181 
182 *
183 * *** MORE TO BE IMPLEMENTED ***
184 *
185 
186 *
187 * Test if the lower bidiagonal matrix L from T = L D L^T
188 * (zero shift facto) is well conditioned
189 *
190 
191 *
192 * Test if the upper bidiagonal matrix U from T = U D U^T
193 * (zero shift facto) is well conditioned.
194 * In this case, the matrix needs to be flipped and, at the end
195 * of the eigenvector computation, the flip needs to be applied
196 * to the computed eigenvectors (and the support)
197 *
198 
199 *
200  RETURN
201 *
202 * END OF DLARRR
203 *
double precision function dlamch(CMACH)
DLAMCH
Definition: dlamch.f:65

Here is the caller graph for this function: