LAPACK  3.4.2
LAPACK: Linear Algebra PACKage
 All Files Functions Groups
ctbcon.f
Go to the documentation of this file.
1 *> \brief \b CTBCON
2 *
3 * =========== DOCUMENTATION ===========
4 *
5 * Online html documentation available at
6 * http://www.netlib.org/lapack/explore-html/
7 *
8 *> \htmlonly
9 *> Download CTBCON + dependencies
10 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/ctbcon.f">
11 *> [TGZ]</a>
12 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/ctbcon.f">
13 *> [ZIP]</a>
14 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/ctbcon.f">
15 *> [TXT]</a>
16 *> \endhtmlonly
17 *
18 * Definition:
19 * ===========
20 *
21 * SUBROUTINE CTBCON( NORM, UPLO, DIAG, N, KD, AB, LDAB, RCOND, WORK,
22 * RWORK, INFO )
23 *
24 * .. Scalar Arguments ..
25 * CHARACTER DIAG, NORM, UPLO
26 * INTEGER INFO, KD, LDAB, N
27 * REAL RCOND
28 * ..
29 * .. Array Arguments ..
30 * REAL RWORK( * )
31 * COMPLEX AB( LDAB, * ), WORK( * )
32 * ..
33 *
34 *
35 *> \par Purpose:
36 * =============
37 *>
38 *> \verbatim
39 *>
40 *> CTBCON estimates the reciprocal of the condition number of a
41 *> triangular band matrix A, in either the 1-norm or the infinity-norm.
42 *>
43 *> The norm of A is computed and an estimate is obtained for
44 *> norm(inv(A)), then the reciprocal of the condition number is
45 *> computed as
46 *> RCOND = 1 / ( norm(A) * norm(inv(A)) ).
47 *> \endverbatim
48 *
49 * Arguments:
50 * ==========
51 *
52 *> \param[in] NORM
53 *> \verbatim
54 *> NORM is CHARACTER*1
55 *> Specifies whether the 1-norm condition number or the
56 *> infinity-norm condition number is required:
57 *> = '1' or 'O': 1-norm;
58 *> = 'I': Infinity-norm.
59 *> \endverbatim
60 *>
61 *> \param[in] UPLO
62 *> \verbatim
63 *> UPLO is CHARACTER*1
64 *> = 'U': A is upper triangular;
65 *> = 'L': A is lower triangular.
66 *> \endverbatim
67 *>
68 *> \param[in] DIAG
69 *> \verbatim
70 *> DIAG is CHARACTER*1
71 *> = 'N': A is non-unit triangular;
72 *> = 'U': A is unit triangular.
73 *> \endverbatim
74 *>
75 *> \param[in] N
76 *> \verbatim
77 *> N is INTEGER
78 *> The order of the matrix A. N >= 0.
79 *> \endverbatim
80 *>
81 *> \param[in] KD
82 *> \verbatim
83 *> KD is INTEGER
84 *> The number of superdiagonals or subdiagonals of the
85 *> triangular band matrix A. KD >= 0.
86 *> \endverbatim
87 *>
88 *> \param[in] AB
89 *> \verbatim
90 *> AB is COMPLEX array, dimension (LDAB,N)
91 *> The upper or lower triangular band matrix A, stored in the
92 *> first kd+1 rows of the array. The j-th column of A is stored
93 *> in the j-th column of the array AB as follows:
94 *> if UPLO = 'U', AB(kd+1+i-j,j) = A(i,j) for max(1,j-kd)<=i<=j;
95 *> if UPLO = 'L', AB(1+i-j,j) = A(i,j) for j<=i<=min(n,j+kd).
96 *> If DIAG = 'U', the diagonal elements of A are not referenced
97 *> and are assumed to be 1.
98 *> \endverbatim
99 *>
100 *> \param[in] LDAB
101 *> \verbatim
102 *> LDAB is INTEGER
103 *> The leading dimension of the array AB. LDAB >= KD+1.
104 *> \endverbatim
105 *>
106 *> \param[out] RCOND
107 *> \verbatim
108 *> RCOND is REAL
109 *> The reciprocal of the condition number of the matrix A,
110 *> computed as RCOND = 1/(norm(A) * norm(inv(A))).
111 *> \endverbatim
112 *>
113 *> \param[out] WORK
114 *> \verbatim
115 *> WORK is COMPLEX array, dimension (2*N)
116 *> \endverbatim
117 *>
118 *> \param[out] RWORK
119 *> \verbatim
120 *> RWORK is REAL array, dimension (N)
121 *> \endverbatim
122 *>
123 *> \param[out] INFO
124 *> \verbatim
125 *> INFO is INTEGER
126 *> = 0: successful exit
127 *> < 0: if INFO = -i, the i-th argument had an illegal value
128 *> \endverbatim
129 *
130 * Authors:
131 * ========
132 *
133 *> \author Univ. of Tennessee
134 *> \author Univ. of California Berkeley
135 *> \author Univ. of Colorado Denver
136 *> \author NAG Ltd.
137 *
138 *> \date November 2011
139 *
140 *> \ingroup complexOTHERcomputational
141 *
142 * =====================================================================
143  SUBROUTINE ctbcon( NORM, UPLO, DIAG, N, KD, AB, LDAB, RCOND, WORK,
144  $ rwork, info )
145 *
146 * -- LAPACK computational routine (version 3.4.0) --
147 * -- LAPACK is a software package provided by Univ. of Tennessee, --
148 * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
149 * November 2011
150 *
151 * .. Scalar Arguments ..
152  CHARACTER diag, norm, uplo
153  INTEGER info, kd, ldab, n
154  REAL rcond
155 * ..
156 * .. Array Arguments ..
157  REAL rwork( * )
158  COMPLEX ab( ldab, * ), work( * )
159 * ..
160 *
161 * =====================================================================
162 *
163 * .. Parameters ..
164  REAL one, zero
165  parameter( one = 1.0e+0, zero = 0.0e+0 )
166 * ..
167 * .. Local Scalars ..
168  LOGICAL nounit, onenrm, upper
169  CHARACTER normin
170  INTEGER ix, kase, kase1
171  REAL ainvnm, anorm, scale, smlnum, xnorm
172  COMPLEX zdum
173 * ..
174 * .. Local Arrays ..
175  INTEGER isave( 3 )
176 * ..
177 * .. External Functions ..
178  LOGICAL lsame
179  INTEGER icamax
180  REAL clantb, slamch
181  EXTERNAL lsame, icamax, clantb, slamch
182 * ..
183 * .. External Subroutines ..
184  EXTERNAL clacn2, clatbs, csrscl, xerbla
185 * ..
186 * .. Intrinsic Functions ..
187  INTRINSIC abs, aimag, max, real
188 * ..
189 * .. Statement Functions ..
190  REAL cabs1
191 * ..
192 * .. Statement Function definitions ..
193  cabs1( zdum ) = abs( REAL( ZDUM ) ) + abs( aimag( zdum ) )
194 * ..
195 * .. Executable Statements ..
196 *
197 * Test the input parameters.
198 *
199  info = 0
200  upper = lsame( uplo, 'U' )
201  onenrm = norm.EQ.'1' .OR. lsame( norm, 'O' )
202  nounit = lsame( diag, 'N' )
203 *
204  IF( .NOT.onenrm .AND. .NOT.lsame( norm, 'I' ) ) THEN
205  info = -1
206  ELSE IF( .NOT.upper .AND. .NOT.lsame( uplo, 'L' ) ) THEN
207  info = -2
208  ELSE IF( .NOT.nounit .AND. .NOT.lsame( diag, 'U' ) ) THEN
209  info = -3
210  ELSE IF( n.LT.0 ) THEN
211  info = -4
212  ELSE IF( kd.LT.0 ) THEN
213  info = -5
214  ELSE IF( ldab.LT.kd+1 ) THEN
215  info = -7
216  END IF
217  IF( info.NE.0 ) THEN
218  CALL xerbla( 'CTBCON', -info )
219  return
220  END IF
221 *
222 * Quick return if possible
223 *
224  IF( n.EQ.0 ) THEN
225  rcond = one
226  return
227  END IF
228 *
229  rcond = zero
230  smlnum = slamch( 'Safe minimum' )*REAL( MAX( N, 1 ) )
231 *
232 * Compute the 1-norm of the triangular matrix A or A**H.
233 *
234  anorm = clantb( norm, uplo, diag, n, kd, ab, ldab, rwork )
235 *
236 * Continue only if ANORM > 0.
237 *
238  IF( anorm.GT.zero ) THEN
239 *
240 * Estimate the 1-norm of the inverse of A.
241 *
242  ainvnm = zero
243  normin = 'N'
244  IF( onenrm ) THEN
245  kase1 = 1
246  ELSE
247  kase1 = 2
248  END IF
249  kase = 0
250  10 continue
251  CALL clacn2( n, work( n+1 ), work, ainvnm, kase, isave )
252  IF( kase.NE.0 ) THEN
253  IF( kase.EQ.kase1 ) THEN
254 *
255 * Multiply by inv(A).
256 *
257  CALL clatbs( uplo, 'No transpose', diag, normin, n, kd,
258  $ ab, ldab, work, scale, rwork, info )
259  ELSE
260 *
261 * Multiply by inv(A**H).
262 *
263  CALL clatbs( uplo, 'Conjugate transpose', diag, normin,
264  $ n, kd, ab, ldab, work, scale, rwork, info )
265  END IF
266  normin = 'Y'
267 *
268 * Multiply by 1/SCALE if doing so will not cause overflow.
269 *
270  IF( scale.NE.one ) THEN
271  ix = icamax( n, work, 1 )
272  xnorm = cabs1( work( ix ) )
273  IF( scale.LT.xnorm*smlnum .OR. scale.EQ.zero )
274  $ go to 20
275  CALL csrscl( n, scale, work, 1 )
276  END IF
277  go to 10
278  END IF
279 *
280 * Compute the estimate of the reciprocal condition number.
281 *
282  IF( ainvnm.NE.zero )
283  $ rcond = ( one / anorm ) / ainvnm
284  END IF
285 *
286  20 continue
287  return
288 *
289 * End of CTBCON
290 *
291  END