LAPACK 3.12.1
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches

◆ slaqge()

subroutine slaqge ( integer m,
integer n,
real, dimension( lda, * ) a,
integer lda,
real, dimension( * ) r,
real, dimension( * ) c,
real rowcnd,
real colcnd,
real amax,
character equed )

SLAQGE scales a general rectangular matrix, using row and column scaling factors computed by sgeequ.

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

Purpose:
!>
!> SLAQGE equilibrates a general M by N matrix A using the row and
!> column scaling factors in the vectors R and C.
!> 
Parameters
[in]M
!>          M is INTEGER
!>          The number of rows of the matrix A.  M >= 0.
!> 
[in]N
!>          N is INTEGER
!>          The number of columns of the matrix A.  N >= 0.
!> 
[in,out]A
!>          A is REAL array, dimension (LDA,N)
!>          On entry, the M by N matrix A.
!>          On exit, the equilibrated matrix.  See EQUED for the form of
!>          the equilibrated matrix.
!> 
[in]LDA
!>          LDA is INTEGER
!>          The leading dimension of the array A.  LDA >= max(M,1).
!> 
[in]R
!>          R is REAL array, dimension (M)
!>          The row scale factors for A.
!> 
[in]C
!>          C is REAL array, dimension (N)
!>          The column scale factors for A.
!> 
[in]ROWCND
!>          ROWCND is REAL
!>          Ratio of the smallest R(i) to the largest R(i).
!> 
[in]COLCND
!>          COLCND is REAL
!>          Ratio of the smallest C(i) to the largest C(i).
!> 
[in]AMAX
!>          AMAX is REAL
!>          Absolute value of largest matrix entry.
!> 
[out]EQUED
!>          EQUED is CHARACTER*1
!>          Specifies the form of equilibration that was done.
!>          = 'N':  No equilibration
!>          = 'R':  Row equilibration, i.e., A has been premultiplied by
!>                  diag(R).
!>          = 'C':  Column equilibration, i.e., A has been postmultiplied
!>                  by diag(C).
!>          = 'B':  Both row and column equilibration, i.e., A has been
!>                  replaced by diag(R) * A * diag(C).
!> 
Internal Parameters:
!>  THRESH is a threshold value used to decide if row or column scaling
!>  should be done based on the ratio of the row or column scaling
!>  factors.  If ROWCND < THRESH, row scaling is done, and if
!>  COLCND < THRESH, column scaling is done.
!>
!>  LARGE and SMALL are threshold values used to decide if row scaling
!>  should be done based on the absolute size of the largest matrix
!>  element.  If AMAX > LARGE or AMAX < SMALL, row scaling is done.
!> 
Author
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.

Definition at line 138 of file slaqge.f.

140*
141* -- LAPACK auxiliary routine --
142* -- LAPACK is a software package provided by Univ. of Tennessee, --
143* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
144*
145* .. Scalar Arguments ..
146 CHARACTER EQUED
147 INTEGER LDA, M, N
148 REAL AMAX, COLCND, ROWCND
149* ..
150* .. Array Arguments ..
151 REAL A( LDA, * ), C( * ), R( * )
152* ..
153*
154* =====================================================================
155*
156* .. Parameters ..
157 REAL ONE, THRESH
158 parameter( one = 1.0e+0, thresh = 0.1e+0 )
159* ..
160* .. Local Scalars ..
161 INTEGER I, J
162 REAL CJ, LARGE, SMALL
163* ..
164* .. External Functions ..
165 REAL SLAMCH
166 EXTERNAL slamch
167* ..
168* .. Executable Statements ..
169*
170* Quick return if possible
171*
172 IF( m.LE.0 .OR. n.LE.0 ) THEN
173 equed = 'N'
174 RETURN
175 END IF
176*
177* Initialize LARGE and SMALL.
178*
179 small = slamch( 'Safe minimum' ) / slamch( 'Precision' )
180 large = one / small
181*
182 IF( rowcnd.GE.thresh .AND. amax.GE.small .AND. amax.LE.large )
183 $ THEN
184*
185* No row scaling
186*
187 IF( colcnd.GE.thresh ) THEN
188*
189* No column scaling
190*
191 equed = 'N'
192 ELSE
193*
194* Column scaling
195*
196 DO 20 j = 1, n
197 cj = c( j )
198 DO 10 i = 1, m
199 a( i, j ) = cj*a( i, j )
200 10 CONTINUE
201 20 CONTINUE
202 equed = 'C'
203 END IF
204 ELSE IF( colcnd.GE.thresh ) THEN
205*
206* Row scaling, no column scaling
207*
208 DO 40 j = 1, n
209 DO 30 i = 1, m
210 a( i, j ) = r( i )*a( i, j )
211 30 CONTINUE
212 40 CONTINUE
213 equed = 'R'
214 ELSE
215*
216* Row and column scaling
217*
218 DO 60 j = 1, n
219 cj = c( j )
220 DO 50 i = 1, m
221 a( i, j ) = cj*r( i )*a( i, j )
222 50 CONTINUE
223 60 CONTINUE
224 equed = 'B'
225 END IF
226*
227 RETURN
228*
229* End of SLAQGE
230*
real function slamch(cmach)
SLAMCH
Definition slamch.f:68
Here is the caller graph for this function: