LAPACK 3.12.1
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches
claqge.f
Go to the documentation of this file.
1*> \brief \b CLAQGE scales a general rectangular matrix, using row and column scaling factors computed by sgeequ.
2*
3* =========== DOCUMENTATION ===========
4*
5* Online html documentation available at
6* http://www.netlib.org/lapack/explore-html/
7*
8*> Download CLAQGE + dependencies
9*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/claqge.f">
10*> [TGZ]</a>
11*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/claqge.f">
12*> [ZIP]</a>
13*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/claqge.f">
14*> [TXT]</a>
15*
16* Definition:
17* ===========
18*
19* SUBROUTINE CLAQGE( M, N, A, LDA, R, C, ROWCND, COLCND, AMAX,
20* EQUED )
21*
22* .. Scalar Arguments ..
23* CHARACTER EQUED
24* INTEGER LDA, M, N
25* REAL AMAX, COLCND, ROWCND
26* ..
27* .. Array Arguments ..
28* REAL C( * ), R( * )
29* COMPLEX A( LDA, * )
30* ..
31*
32*
33*> \par Purpose:
34* =============
35*>
36*> \verbatim
37*>
38*> CLAQGE equilibrates a general M by N matrix A using the row and
39*> column scaling factors in the vectors R and C.
40*> \endverbatim
41*
42* Arguments:
43* ==========
44*
45*> \param[in] M
46*> \verbatim
47*> M is INTEGER
48*> The number of rows of the matrix A. M >= 0.
49*> \endverbatim
50*>
51*> \param[in] N
52*> \verbatim
53*> N is INTEGER
54*> The number of columns of the matrix A. N >= 0.
55*> \endverbatim
56*>
57*> \param[in,out] A
58*> \verbatim
59*> A is COMPLEX array, dimension (LDA,N)
60*> On entry, the M by N matrix A.
61*> On exit, the equilibrated matrix. See EQUED for the form of
62*> the equilibrated matrix.
63*> \endverbatim
64*>
65*> \param[in] LDA
66*> \verbatim
67*> LDA is INTEGER
68*> The leading dimension of the array A. LDA >= max(M,1).
69*> \endverbatim
70*>
71*> \param[in] R
72*> \verbatim
73*> R is REAL array, dimension (M)
74*> The row scale factors for A.
75*> \endverbatim
76*>
77*> \param[in] C
78*> \verbatim
79*> C is REAL array, dimension (N)
80*> The column scale factors for A.
81*> \endverbatim
82*>
83*> \param[in] ROWCND
84*> \verbatim
85*> ROWCND is REAL
86*> Ratio of the smallest R(i) to the largest R(i).
87*> \endverbatim
88*>
89*> \param[in] COLCND
90*> \verbatim
91*> COLCND is REAL
92*> Ratio of the smallest C(i) to the largest C(i).
93*> \endverbatim
94*>
95*> \param[in] AMAX
96*> \verbatim
97*> AMAX is REAL
98*> Absolute value of largest matrix entry.
99*> \endverbatim
100*>
101*> \param[out] EQUED
102*> \verbatim
103*> EQUED is CHARACTER*1
104*> Specifies the form of equilibration that was done.
105*> = 'N': No equilibration
106*> = 'R': Row equilibration, i.e., A has been premultiplied by
107*> diag(R).
108*> = 'C': Column equilibration, i.e., A has been postmultiplied
109*> by diag(C).
110*> = 'B': Both row and column equilibration, i.e., A has been
111*> replaced by diag(R) * A * diag(C).
112*> \endverbatim
113*
114*> \par Internal Parameters:
115* =========================
116*>
117*> \verbatim
118*> THRESH is a threshold value used to decide if row or column scaling
119*> should be done based on the ratio of the row or column scaling
120*> factors. If ROWCND < THRESH, row scaling is done, and if
121*> COLCND < THRESH, column scaling is done.
122*>
123*> LARGE and SMALL are threshold values used to decide if row scaling
124*> should be done based on the absolute size of the largest matrix
125*> element. If AMAX > LARGE or AMAX < SMALL, row scaling is done.
126*> \endverbatim
127*
128* Authors:
129* ========
130*
131*> \author Univ. of Tennessee
132*> \author Univ. of California Berkeley
133*> \author Univ. of Colorado Denver
134*> \author NAG Ltd.
135*
136*> \ingroup laqge
137*
138* =====================================================================
139 SUBROUTINE claqge( M, N, A, LDA, R, C, ROWCND, COLCND, AMAX,
140 $ EQUED )
141*
142* -- LAPACK auxiliary routine --
143* -- LAPACK is a software package provided by Univ. of Tennessee, --
144* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
145*
146* .. Scalar Arguments ..
147 CHARACTER EQUED
148 INTEGER LDA, M, N
149 REAL AMAX, COLCND, ROWCND
150* ..
151* .. Array Arguments ..
152 REAL C( * ), R( * )
153 COMPLEX A( LDA, * )
154* ..
155*
156* =====================================================================
157*
158* .. Parameters ..
159 REAL ONE, THRESH
160 parameter( one = 1.0e+0, thresh = 0.1e+0 )
161* ..
162* .. Local Scalars ..
163 INTEGER I, J
164 REAL CJ, LARGE, SMALL
165* ..
166* .. External Functions ..
167 REAL SLAMCH
168 EXTERNAL slamch
169* ..
170* .. Executable Statements ..
171*
172* Quick return if possible
173*
174 IF( m.LE.0 .OR. n.LE.0 ) THEN
175 equed = 'N'
176 RETURN
177 END IF
178*
179* Initialize LARGE and SMALL.
180*
181 small = slamch( 'Safe minimum' ) / slamch( 'Precision' )
182 large = one / small
183*
184 IF( rowcnd.GE.thresh .AND. amax.GE.small .AND. amax.LE.large )
185 $ THEN
186*
187* No row scaling
188*
189 IF( colcnd.GE.thresh ) THEN
190*
191* No column scaling
192*
193 equed = 'N'
194 ELSE
195*
196* Column scaling
197*
198 DO 20 j = 1, n
199 cj = c( j )
200 DO 10 i = 1, m
201 a( i, j ) = cj*a( i, j )
202 10 CONTINUE
203 20 CONTINUE
204 equed = 'C'
205 END IF
206 ELSE IF( colcnd.GE.thresh ) THEN
207*
208* Row scaling, no column scaling
209*
210 DO 40 j = 1, n
211 DO 30 i = 1, m
212 a( i, j ) = r( i )*a( i, j )
213 30 CONTINUE
214 40 CONTINUE
215 equed = 'R'
216 ELSE
217*
218* Row and column scaling
219*
220 DO 60 j = 1, n
221 cj = c( j )
222 DO 50 i = 1, m
223 a( i, j ) = cj*r( i )*a( i, j )
224 50 CONTINUE
225 60 CONTINUE
226 equed = 'B'
227 END IF
228*
229 RETURN
230*
231* End of CLAQGE
232*
233 END
subroutine claqge(m, n, a, lda, r, c, rowcnd, colcnd, amax, equed)
CLAQGE scales a general rectangular matrix, using row and column scaling factors computed by sgeequ.
Definition claqge.f:141