LAPACK 3.12.1
LAPACK: Linear Algebra PACKage
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages

◆ slaqsb()

subroutine slaqsb ( character uplo,
integer n,
integer kd,
real, dimension( ldab, * ) ab,
integer ldab,
real, dimension( * ) s,
real scond,
real amax,
character equed )

SLAQSB scales a symmetric/Hermitian band matrix, using scaling factors computed by spbequ.

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

Purpose:
!> !> SLAQSB equilibrates a symmetric band matrix A using the scaling !> factors in the vector S. !>
Parameters
[in]UPLO
!> UPLO is CHARACTER*1 !> Specifies whether the upper or lower triangular part of the !> symmetric matrix A is stored. !> = 'U': Upper triangular !> = 'L': Lower triangular !>
[in]N
!> N is INTEGER !> The order of the matrix A. N >= 0. !>
[in]KD
!> KD is INTEGER !> The number of super-diagonals of the matrix A if UPLO = 'U', !> or the number of sub-diagonals if UPLO = 'L'. KD >= 0. !>
[in,out]AB
!> AB is REAL array, dimension (LDAB,N) !> On entry, the upper or lower triangle of the symmetric band !> matrix A, stored in the first KD+1 rows of the array. The !> j-th column of A is stored in the j-th column of the array AB !> as follows: !> if UPLO = 'U', AB(kd+1+i-j,j) = A(i,j) for max(1,j-kd)<=i<=j; !> if UPLO = 'L', AB(1+i-j,j) = A(i,j) for j<=i<=min(n,j+kd). !> !> On exit, if INFO = 0, the triangular factor U or L from the !> Cholesky factorization A = U**T*U or A = L*L**T of the band !> matrix A, in the same storage format as A. !>
[in]LDAB
!> LDAB is INTEGER !> The leading dimension of the array AB. LDAB >= KD+1. !>
[in]S
!> S is REAL array, dimension (N) !> The scale factors for A. !>
[in]SCOND
!> SCOND is REAL !> Ratio of the smallest S(i) to the largest S(i). !>
[in]AMAX
!> AMAX is REAL !> Absolute value of largest matrix entry. !>
[out]EQUED
!> EQUED is CHARACTER*1 !> Specifies whether or not equilibration was done. !> = 'N': No equilibration. !> = 'Y': Equilibration was done, i.e., A has been replaced by !> diag(S) * A * diag(S). !>
Internal Parameters:
!> THRESH is a threshold value used to decide if scaling should be done !> based on the ratio of the scaling factors. If SCOND < THRESH, !> scaling is done. !> !> LARGE and SMALL are threshold values used to decide if scaling should !> be done based on the absolute size of the largest matrix element. !> If AMAX > LARGE or AMAX < SMALL, scaling is done. !>
Author
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.

Definition at line 137 of file slaqsb.f.

139*
140* -- LAPACK auxiliary routine --
141* -- LAPACK is a software package provided by Univ. of Tennessee, --
142* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
143*
144* .. Scalar Arguments ..
145 CHARACTER EQUED, UPLO
146 INTEGER KD, LDAB, N
147 REAL AMAX, SCOND
148* ..
149* .. Array Arguments ..
150 REAL AB( LDAB, * ), S( * )
151* ..
152*
153* =====================================================================
154*
155* .. Parameters ..
156 REAL ONE, THRESH
157 parameter( one = 1.0e+0, thresh = 0.1e+0 )
158* ..
159* .. Local Scalars ..
160 INTEGER I, J
161 REAL CJ, LARGE, SMALL
162* ..
163* .. External Functions ..
164 LOGICAL LSAME
165 REAL SLAMCH
166 EXTERNAL lsame, slamch
167* ..
168* .. Intrinsic Functions ..
169 INTRINSIC max, min
170* ..
171* .. Executable Statements ..
172*
173* Quick return if possible
174*
175 IF( n.LE.0 ) THEN
176 equed = 'N'
177 RETURN
178 END IF
179*
180* Initialize LARGE and SMALL.
181*
182 small = slamch( 'Safe minimum' ) / slamch( 'Precision' )
183 large = one / small
184*
185 IF( scond.GE.thresh .AND. amax.GE.small .AND. amax.LE.large ) THEN
186*
187* No equilibration
188*
189 equed = 'N'
190 ELSE
191*
192* Replace A by diag(S) * A * diag(S).
193*
194 IF( lsame( uplo, 'U' ) ) THEN
195*
196* Upper triangle of A is stored in band format.
197*
198 DO 20 j = 1, n
199 cj = s( j )
200 DO 10 i = max( 1, j-kd ), j
201 ab( kd+1+i-j, j ) = cj*s( i )*ab( kd+1+i-j, j )
202 10 CONTINUE
203 20 CONTINUE
204 ELSE
205*
206* Lower triangle of A is stored.
207*
208 DO 40 j = 1, n
209 cj = s( j )
210 DO 30 i = j, min( n, j+kd )
211 ab( 1+i-j, j ) = cj*s( i )*ab( 1+i-j, j )
212 30 CONTINUE
213 40 CONTINUE
214 END IF
215 equed = 'Y'
216 END IF
217*
218 RETURN
219*
220* End of SLAQSB
221*
real function slamch(cmach)
SLAMCH
Definition slamch.f:68
logical function lsame(ca, cb)
LSAME
Definition lsame.f:48
Here is the caller graph for this function: