LAPACK  3.10.0
LAPACK: Linear Algebra PACKage
dlar1v.f
Go to the documentation of this file.
1 *> \brief \b DLAR1V computes the (scaled) r-th column of the inverse of the submatrix in rows b1 through bn of the tridiagonal matrix LDLT - λI.
2 *
3 * =========== DOCUMENTATION ===========
4 *
5 * Online html documentation available at
6 * http://www.netlib.org/lapack/explore-html/
7 *
8 *> \htmlonly
9 *> Download DLAR1V + dependencies
10 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/dlar1v.f">
11 *> [TGZ]</a>
12 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/dlar1v.f">
13 *> [ZIP]</a>
14 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/dlar1v.f">
15 *> [TXT]</a>
16 *> \endhtmlonly
17 *
18 * Definition:
19 * ===========
20 *
21 * SUBROUTINE DLAR1V( N, B1, BN, LAMBDA, D, L, LD, LLD,
22 * PIVMIN, GAPTOL, Z, WANTNC, NEGCNT, ZTZ, MINGMA,
23 * R, ISUPPZ, NRMINV, RESID, RQCORR, WORK )
24 *
25 * .. Scalar Arguments ..
26 * LOGICAL WANTNC
27 * INTEGER B1, BN, N, NEGCNT, R
28 * DOUBLE PRECISION GAPTOL, LAMBDA, MINGMA, NRMINV, PIVMIN, RESID,
29 * $ RQCORR, ZTZ
30 * ..
31 * .. Array Arguments ..
32 * INTEGER ISUPPZ( * )
33 * DOUBLE PRECISION D( * ), L( * ), LD( * ), LLD( * ),
34 * $ WORK( * )
35 * DOUBLE PRECISION Z( * )
36 * ..
37 *
38 *
39 *> \par Purpose:
40 * =============
41 *>
42 *> \verbatim
43 *>
44 *> DLAR1V computes the (scaled) r-th column of the inverse of
45 *> the sumbmatrix in rows B1 through BN of the tridiagonal matrix
46 *> L D L**T - sigma I. When sigma is close to an eigenvalue, the
47 *> computed vector is an accurate eigenvector. Usually, r corresponds
48 *> to the index where the eigenvector is largest in magnitude.
49 *> The following steps accomplish this computation :
50 *> (a) Stationary qd transform, L D L**T - sigma I = L(+) D(+) L(+)**T,
51 *> (b) Progressive qd transform, L D L**T - sigma I = U(-) D(-) U(-)**T,
52 *> (c) Computation of the diagonal elements of the inverse of
53 *> L D L**T - sigma I by combining the above transforms, and choosing
54 *> r as the index where the diagonal of the inverse is (one of the)
55 *> largest in magnitude.
56 *> (d) Computation of the (scaled) r-th column of the inverse using the
57 *> twisted factorization obtained by combining the top part of the
58 *> the stationary and the bottom part of the progressive transform.
59 *> \endverbatim
60 *
61 * Arguments:
62 * ==========
63 *
64 *> \param[in] N
65 *> \verbatim
66 *> N is INTEGER
67 *> The order of the matrix L D L**T.
68 *> \endverbatim
69 *>
70 *> \param[in] B1
71 *> \verbatim
72 *> B1 is INTEGER
73 *> First index of the submatrix of L D L**T.
74 *> \endverbatim
75 *>
76 *> \param[in] BN
77 *> \verbatim
78 *> BN is INTEGER
79 *> Last index of the submatrix of L D L**T.
80 *> \endverbatim
81 *>
82 *> \param[in] LAMBDA
83 *> \verbatim
84 *> LAMBDA is DOUBLE PRECISION
85 *> The shift. In order to compute an accurate eigenvector,
86 *> LAMBDA should be a good approximation to an eigenvalue
87 *> of L D L**T.
88 *> \endverbatim
89 *>
90 *> \param[in] L
91 *> \verbatim
92 *> L is DOUBLE PRECISION array, dimension (N-1)
93 *> The (n-1) subdiagonal elements of the unit bidiagonal matrix
94 *> L, in elements 1 to N-1.
95 *> \endverbatim
96 *>
97 *> \param[in] D
98 *> \verbatim
99 *> D is DOUBLE PRECISION array, dimension (N)
100 *> The n diagonal elements of the diagonal matrix D.
101 *> \endverbatim
102 *>
103 *> \param[in] LD
104 *> \verbatim
105 *> LD is DOUBLE PRECISION array, dimension (N-1)
106 *> The n-1 elements L(i)*D(i).
107 *> \endverbatim
108 *>
109 *> \param[in] LLD
110 *> \verbatim
111 *> LLD is DOUBLE PRECISION array, dimension (N-1)
112 *> The n-1 elements L(i)*L(i)*D(i).
113 *> \endverbatim
114 *>
115 *> \param[in] PIVMIN
116 *> \verbatim
117 *> PIVMIN is DOUBLE PRECISION
118 *> The minimum pivot in the Sturm sequence.
119 *> \endverbatim
120 *>
121 *> \param[in] GAPTOL
122 *> \verbatim
123 *> GAPTOL is DOUBLE PRECISION
124 *> Tolerance that indicates when eigenvector entries are negligible
125 *> w.r.t. their contribution to the residual.
126 *> \endverbatim
127 *>
128 *> \param[in,out] Z
129 *> \verbatim
130 *> Z is DOUBLE PRECISION array, dimension (N)
131 *> On input, all entries of Z must be set to 0.
132 *> On output, Z contains the (scaled) r-th column of the
133 *> inverse. The scaling is such that Z(R) equals 1.
134 *> \endverbatim
135 *>
136 *> \param[in] WANTNC
137 *> \verbatim
138 *> WANTNC is LOGICAL
139 *> Specifies whether NEGCNT has to be computed.
140 *> \endverbatim
141 *>
142 *> \param[out] NEGCNT
143 *> \verbatim
144 *> NEGCNT is INTEGER
145 *> If WANTNC is .TRUE. then NEGCNT = the number of pivots < pivmin
146 *> in the matrix factorization L D L**T, and NEGCNT = -1 otherwise.
147 *> \endverbatim
148 *>
149 *> \param[out] ZTZ
150 *> \verbatim
151 *> ZTZ is DOUBLE PRECISION
152 *> The square of the 2-norm of Z.
153 *> \endverbatim
154 *>
155 *> \param[out] MINGMA
156 *> \verbatim
157 *> MINGMA is DOUBLE PRECISION
158 *> The reciprocal of the largest (in magnitude) diagonal
159 *> element of the inverse of L D L**T - sigma I.
160 *> \endverbatim
161 *>
162 *> \param[in,out] R
163 *> \verbatim
164 *> R is INTEGER
165 *> The twist index for the twisted factorization used to
166 *> compute Z.
167 *> On input, 0 <= R <= N. If R is input as 0, R is set to
168 *> the index where (L D L**T - sigma I)^{-1} is largest
169 *> in magnitude. If 1 <= R <= N, R is unchanged.
170 *> On output, R contains the twist index used to compute Z.
171 *> Ideally, R designates the position of the maximum entry in the
172 *> eigenvector.
173 *> \endverbatim
174 *>
175 *> \param[out] ISUPPZ
176 *> \verbatim
177 *> ISUPPZ is INTEGER array, dimension (2)
178 *> The support of the vector in Z, i.e., the vector Z is
179 *> nonzero only in elements ISUPPZ(1) through ISUPPZ( 2 ).
180 *> \endverbatim
181 *>
182 *> \param[out] NRMINV
183 *> \verbatim
184 *> NRMINV is DOUBLE PRECISION
185 *> NRMINV = 1/SQRT( ZTZ )
186 *> \endverbatim
187 *>
188 *> \param[out] RESID
189 *> \verbatim
190 *> RESID is DOUBLE PRECISION
191 *> The residual of the FP vector.
192 *> RESID = ABS( MINGMA )/SQRT( ZTZ )
193 *> \endverbatim
194 *>
195 *> \param[out] RQCORR
196 *> \verbatim
197 *> RQCORR is DOUBLE PRECISION
198 *> The Rayleigh Quotient correction to LAMBDA.
199 *> RQCORR = MINGMA*TMP
200 *> \endverbatim
201 *>
202 *> \param[out] WORK
203 *> \verbatim
204 *> WORK is DOUBLE PRECISION array, dimension (4*N)
205 *> \endverbatim
206 *
207 * Authors:
208 * ========
209 *
210 *> \author Univ. of Tennessee
211 *> \author Univ. of California Berkeley
212 *> \author Univ. of Colorado Denver
213 *> \author NAG Ltd.
214 *
215 *> \ingroup doubleOTHERauxiliary
216 *
217 *> \par Contributors:
218 * ==================
219 *>
220 *> Beresford Parlett, University of California, Berkeley, USA \n
221 *> Jim Demmel, University of California, Berkeley, USA \n
222 *> Inderjit Dhillon, University of Texas, Austin, USA \n
223 *> Osni Marques, LBNL/NERSC, USA \n
224 *> Christof Voemel, University of California, Berkeley, USA
225 *
226 * =====================================================================
227  SUBROUTINE dlar1v( N, B1, BN, LAMBDA, D, L, LD, LLD,
228  $ PIVMIN, GAPTOL, Z, WANTNC, NEGCNT, ZTZ, MINGMA,
229  $ R, ISUPPZ, NRMINV, RESID, RQCORR, WORK )
230 *
231 * -- LAPACK auxiliary routine --
232 * -- LAPACK is a software package provided by Univ. of Tennessee, --
233 * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
234 *
235 * .. Scalar Arguments ..
236  LOGICAL WANTNC
237  INTEGER B1, BN, N, NEGCNT, R
238  DOUBLE PRECISION GAPTOL, LAMBDA, MINGMA, NRMINV, PIVMIN, RESID,
239  $ rqcorr, ztz
240 * ..
241 * .. Array Arguments ..
242  INTEGER ISUPPZ( * )
243  DOUBLE PRECISION D( * ), L( * ), LD( * ), LLD( * ),
244  $ work( * )
245  DOUBLE PRECISION Z( * )
246 * ..
247 *
248 * =====================================================================
249 *
250 * .. Parameters ..
251  DOUBLE PRECISION ZERO, ONE
252  PARAMETER ( ZERO = 0.0d0, one = 1.0d0 )
253 
254 * ..
255 * .. Local Scalars ..
256  LOGICAL SAWNAN1, SAWNAN2
257  INTEGER I, INDLPL, INDP, INDS, INDUMN, NEG1, NEG2, R1,
258  $ r2
259  DOUBLE PRECISION DMINUS, DPLUS, EPS, S, TMP
260 * ..
261 * .. External Functions ..
262  LOGICAL DISNAN
263  DOUBLE PRECISION DLAMCH
264  EXTERNAL disnan, dlamch
265 * ..
266 * .. Intrinsic Functions ..
267  INTRINSIC abs
268 * ..
269 * .. Executable Statements ..
270 *
271  eps = dlamch( 'Precision' )
272 
273 
274  IF( r.EQ.0 ) THEN
275  r1 = b1
276  r2 = bn
277  ELSE
278  r1 = r
279  r2 = r
280  END IF
281 
282 * Storage for LPLUS
283  indlpl = 0
284 * Storage for UMINUS
285  indumn = n
286  inds = 2*n + 1
287  indp = 3*n + 1
288 
289  IF( b1.EQ.1 ) THEN
290  work( inds ) = zero
291  ELSE
292  work( inds+b1-1 ) = lld( b1-1 )
293  END IF
294 
295 *
296 * Compute the stationary transform (using the differential form)
297 * until the index R2.
298 *
299  sawnan1 = .false.
300  neg1 = 0
301  s = work( inds+b1-1 ) - lambda
302  DO 50 i = b1, r1 - 1
303  dplus = d( i ) + s
304  work( indlpl+i ) = ld( i ) / dplus
305  IF(dplus.LT.zero) neg1 = neg1 + 1
306  work( inds+i ) = s*work( indlpl+i )*l( i )
307  s = work( inds+i ) - lambda
308  50 CONTINUE
309  sawnan1 = disnan( s )
310  IF( sawnan1 ) GOTO 60
311  DO 51 i = r1, r2 - 1
312  dplus = d( i ) + s
313  work( indlpl+i ) = ld( i ) / dplus
314  work( inds+i ) = s*work( indlpl+i )*l( i )
315  s = work( inds+i ) - lambda
316  51 CONTINUE
317  sawnan1 = disnan( s )
318 *
319  60 CONTINUE
320  IF( sawnan1 ) THEN
321 * Runs a slower version of the above loop if a NaN is detected
322  neg1 = 0
323  s = work( inds+b1-1 ) - lambda
324  DO 70 i = b1, r1 - 1
325  dplus = d( i ) + s
326  IF(abs(dplus).LT.pivmin) dplus = -pivmin
327  work( indlpl+i ) = ld( i ) / dplus
328  IF(dplus.LT.zero) neg1 = neg1 + 1
329  work( inds+i ) = s*work( indlpl+i )*l( i )
330  IF( work( indlpl+i ).EQ.zero )
331  $ work( inds+i ) = lld( i )
332  s = work( inds+i ) - lambda
333  70 CONTINUE
334  DO 71 i = r1, r2 - 1
335  dplus = d( i ) + s
336  IF(abs(dplus).LT.pivmin) dplus = -pivmin
337  work( indlpl+i ) = ld( i ) / dplus
338  work( inds+i ) = s*work( indlpl+i )*l( i )
339  IF( work( indlpl+i ).EQ.zero )
340  $ work( inds+i ) = lld( i )
341  s = work( inds+i ) - lambda
342  71 CONTINUE
343  END IF
344 *
345 * Compute the progressive transform (using the differential form)
346 * until the index R1
347 *
348  sawnan2 = .false.
349  neg2 = 0
350  work( indp+bn-1 ) = d( bn ) - lambda
351  DO 80 i = bn - 1, r1, -1
352  dminus = lld( i ) + work( indp+i )
353  tmp = d( i ) / dminus
354  IF(dminus.LT.zero) neg2 = neg2 + 1
355  work( indumn+i ) = l( i )*tmp
356  work( indp+i-1 ) = work( indp+i )*tmp - lambda
357  80 CONTINUE
358  tmp = work( indp+r1-1 )
359  sawnan2 = disnan( tmp )
360 
361  IF( sawnan2 ) THEN
362 * Runs a slower version of the above loop if a NaN is detected
363  neg2 = 0
364  DO 100 i = bn-1, r1, -1
365  dminus = lld( i ) + work( indp+i )
366  IF(abs(dminus).LT.pivmin) dminus = -pivmin
367  tmp = d( i ) / dminus
368  IF(dminus.LT.zero) neg2 = neg2 + 1
369  work( indumn+i ) = l( i )*tmp
370  work( indp+i-1 ) = work( indp+i )*tmp - lambda
371  IF( tmp.EQ.zero )
372  $ work( indp+i-1 ) = d( i ) - lambda
373  100 CONTINUE
374  END IF
375 *
376 * Find the index (from R1 to R2) of the largest (in magnitude)
377 * diagonal element of the inverse
378 *
379  mingma = work( inds+r1-1 ) + work( indp+r1-1 )
380  IF( mingma.LT.zero ) neg1 = neg1 + 1
381  IF( wantnc ) THEN
382  negcnt = neg1 + neg2
383  ELSE
384  negcnt = -1
385  ENDIF
386  IF( abs(mingma).EQ.zero )
387  $ mingma = eps*work( inds+r1-1 )
388  r = r1
389  DO 110 i = r1, r2 - 1
390  tmp = work( inds+i ) + work( indp+i )
391  IF( tmp.EQ.zero )
392  $ tmp = eps*work( inds+i )
393  IF( abs( tmp ).LE.abs( mingma ) ) THEN
394  mingma = tmp
395  r = i + 1
396  END IF
397  110 CONTINUE
398 *
399 * Compute the FP vector: solve N^T v = e_r
400 *
401  isuppz( 1 ) = b1
402  isuppz( 2 ) = bn
403  z( r ) = one
404  ztz = one
405 *
406 * Compute the FP vector upwards from R
407 *
408  IF( .NOT.sawnan1 .AND. .NOT.sawnan2 ) THEN
409  DO 210 i = r-1, b1, -1
410  z( i ) = -( work( indlpl+i )*z( i+1 ) )
411  IF( (abs(z(i))+abs(z(i+1)))* abs(ld(i)).LT.gaptol )
412  $ THEN
413  z( i ) = zero
414  isuppz( 1 ) = i + 1
415  GOTO 220
416  ENDIF
417  ztz = ztz + z( i )*z( i )
418  210 CONTINUE
419  220 CONTINUE
420  ELSE
421 * Run slower loop if NaN occurred.
422  DO 230 i = r - 1, b1, -1
423  IF( z( i+1 ).EQ.zero ) THEN
424  z( i ) = -( ld( i+1 ) / ld( i ) )*z( i+2 )
425  ELSE
426  z( i ) = -( work( indlpl+i )*z( i+1 ) )
427  END IF
428  IF( (abs(z(i))+abs(z(i+1)))* abs(ld(i)).LT.gaptol )
429  $ THEN
430  z( i ) = zero
431  isuppz( 1 ) = i + 1
432  GO TO 240
433  END IF
434  ztz = ztz + z( i )*z( i )
435  230 CONTINUE
436  240 CONTINUE
437  ENDIF
438 
439 * Compute the FP vector downwards from R in blocks of size BLKSIZ
440  IF( .NOT.sawnan1 .AND. .NOT.sawnan2 ) THEN
441  DO 250 i = r, bn-1
442  z( i+1 ) = -( work( indumn+i )*z( i ) )
443  IF( (abs(z(i))+abs(z(i+1)))* abs(ld(i)).LT.gaptol )
444  $ THEN
445  z( i+1 ) = zero
446  isuppz( 2 ) = i
447  GO TO 260
448  END IF
449  ztz = ztz + z( i+1 )*z( i+1 )
450  250 CONTINUE
451  260 CONTINUE
452  ELSE
453 * Run slower loop if NaN occurred.
454  DO 270 i = r, bn - 1
455  IF( z( i ).EQ.zero ) THEN
456  z( i+1 ) = -( ld( i-1 ) / ld( i ) )*z( i-1 )
457  ELSE
458  z( i+1 ) = -( work( indumn+i )*z( i ) )
459  END IF
460  IF( (abs(z(i))+abs(z(i+1)))* abs(ld(i)).LT.gaptol )
461  $ THEN
462  z( i+1 ) = zero
463  isuppz( 2 ) = i
464  GO TO 280
465  END IF
466  ztz = ztz + z( i+1 )*z( i+1 )
467  270 CONTINUE
468  280 CONTINUE
469  END IF
470 *
471 * Compute quantities for convergence test
472 *
473  tmp = one / ztz
474  nrminv = sqrt( tmp )
475  resid = abs( mingma )*nrminv
476  rqcorr = mingma*tmp
477 *
478 *
479  RETURN
480 *
481 * End of DLAR1V
482 *
483  END
subroutine dlar1v(N, B1, BN, LAMBDA, D, L, LD, LLD, PIVMIN, GAPTOL, Z, WANTNC, NEGCNT, ZTZ, MINGMA, R, ISUPPZ, NRMINV, RESID, RQCORR, WORK)
DLAR1V computes the (scaled) r-th column of the inverse of the submatrix in rows b1 through bn of the...
Definition: dlar1v.f:230