114 SUBROUTINE cgesc2( N, A, LDA, RHS, IPIV, JPIV, SCALE )
125 INTEGER IPIV( * ), JPIV( * )
126 COMPLEX A( LDA, * ), RHS( * )
133 parameter( zero = 0.0e+0, one = 1.0e+0, two = 2.0e+0 )
137 REAL BIGNUM, EPS, SMLNUM
146 EXTERNAL icamax, slamch
149 INTRINSIC abs, cmplx, real
156 smlnum = slamch(
'S' ) / eps
157 bignum = one / smlnum
161 CALL claswp( 1, rhs, lda, 1, n-1, ipiv, 1 )
167 rhs( j ) = rhs( j ) - a( j, i )*rhs( i )
177 i = icamax( n, rhs, 1 )
178 IF( two*smlnum*abs( rhs( i ) ).GT.abs( a( n, n ) ) )
THEN
179 temp = cmplx( one / two, zero ) / abs( rhs( i ) )
180 CALL cscal( n, temp, rhs( 1 ), 1 )
181 scale = scale*real( temp )
184 temp = cmplx( one, zero ) / a( i, i )
185 rhs( i ) = rhs( i )*temp
187 rhs( i ) = rhs( i ) - rhs( j )*( a( i, j )*temp )
193 CALL claswp( 1, rhs, lda, 1, n-1, jpiv, -1 )
subroutine cgesc2(n, a, lda, rhs, ipiv, jpiv, scale)
CGESC2 solves a system of linear equations using the LU factorization with complete pivoting computed...
subroutine claswp(n, a, lda, k1, k2, ipiv, incx)
CLASWP performs a series of row interchanges on a general rectangular matrix.
subroutine cscal(n, ca, cx, incx)
CSCAL