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

◆ zgetf2()

subroutine zgetf2 ( integer  m,
integer  n,
complex*16, dimension( lda, * )  a,
integer  lda,
integer, dimension( * )  ipiv,
integer  info 
)

ZGETF2 computes the LU factorization of a general m-by-n matrix using partial pivoting with row interchanges (unblocked algorithm).

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

Purpose:
 ZGETF2 computes an LU factorization of a general m-by-n matrix A
 using partial pivoting with row interchanges.

 The factorization has the form
    A = P * L * U
 where P is a permutation matrix, L is lower triangular with unit
 diagonal elements (lower trapezoidal if m > n), and U is upper
 triangular (upper trapezoidal if m < n).

 This is the right-looking Level 2 BLAS version of the algorithm.
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 COMPLEX*16 array, dimension (LDA,N)
          On entry, the m by n matrix to be factored.
          On exit, the factors L and U from the factorization
          A = P*L*U; the unit diagonal elements of L are not stored.
[in]LDA
          LDA is INTEGER
          The leading dimension of the array A.  LDA >= max(1,M).
[out]IPIV
          IPIV is INTEGER array, dimension (min(M,N))
          The pivot indices; for 1 <= i <= min(M,N), row i of the
          matrix was interchanged with row IPIV(i).
[out]INFO
          INFO is INTEGER
          = 0: successful exit
          < 0: if INFO = -k, the k-th argument had an illegal value
          > 0: if INFO = k, U(k,k) is exactly zero. The factorization
               has been completed, but the factor U is exactly
               singular, and division by zero will occur if it is used
               to solve a system of equations.
Author
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.

Definition at line 107 of file zgetf2.f.

108*
109* -- LAPACK computational routine --
110* -- LAPACK is a software package provided by Univ. of Tennessee, --
111* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
112*
113* .. Scalar Arguments ..
114 INTEGER INFO, LDA, M, N
115* ..
116* .. Array Arguments ..
117 INTEGER IPIV( * )
118 COMPLEX*16 A( LDA, * )
119* ..
120*
121* =====================================================================
122*
123* .. Parameters ..
124 COMPLEX*16 ONE, ZERO
125 parameter( one = ( 1.0d+0, 0.0d+0 ),
126 $ zero = ( 0.0d+0, 0.0d+0 ) )
127* ..
128* .. Local Scalars ..
129 DOUBLE PRECISION SFMIN
130 INTEGER J, JP
131* ..
132* .. External Functions ..
133 DOUBLE PRECISION DLAMCH
134 INTEGER IZAMAX
135 EXTERNAL dlamch, izamax
136* ..
137* .. External Subroutines ..
138 EXTERNAL xerbla, zgeru, zrscl, zswap
139* ..
140* .. Intrinsic Functions ..
141 INTRINSIC max, min
142* ..
143* .. Executable Statements ..
144*
145* Test the input parameters.
146*
147 info = 0
148 IF( m.LT.0 ) THEN
149 info = -1
150 ELSE IF( n.LT.0 ) THEN
151 info = -2
152 ELSE IF( lda.LT.max( 1, m ) ) THEN
153 info = -4
154 END IF
155 IF( info.NE.0 ) THEN
156 CALL xerbla( 'ZGETF2', -info )
157 RETURN
158 END IF
159*
160* Quick return if possible
161*
162 IF( m.EQ.0 .OR. n.EQ.0 )
163 $ RETURN
164*
165* Compute machine safe minimum
166*
167 sfmin = dlamch('S')
168*
169 DO 10 j = 1, min( m, n )
170*
171* Find pivot and test for singularity.
172*
173 jp = j - 1 + izamax( m-j+1, a( j, j ), 1 )
174 ipiv( j ) = jp
175 IF( a( jp, j ).NE.zero ) THEN
176*
177* Apply the interchange to columns 1:N.
178*
179 IF( jp.NE.j )
180 $ CALL zswap( n, a( j, 1 ), lda, a( jp, 1 ), lda )
181*
182* Compute elements J+1:M of J-th column.
183*
184 IF( j.LT.m )
185 $ CALL zrscl( m-j, a( j, j ), a( j+1, j ), 1 )
186*
187 ELSE IF( info.EQ.0 ) THEN
188*
189 info = j
190 END IF
191*
192 IF( j.LT.min( m, n ) ) THEN
193*
194* Update trailing submatrix.
195*
196 CALL zgeru( m-j, n-j, -one, a( j+1, j ), 1, a( j, j+1 ),
197 $ lda, a( j+1, j+1 ), lda )
198 END IF
199 10 CONTINUE
200 RETURN
201*
202* End of ZGETF2
203*
subroutine xerbla(srname, info)
Definition cblat2.f:3285
subroutine zgeru(m, n, alpha, x, incx, y, incy, a, lda)
ZGERU
Definition zgeru.f:130
integer function izamax(n, zx, incx)
IZAMAX
Definition izamax.f:71
double precision function dlamch(cmach)
DLAMCH
Definition dlamch.f:69
subroutine zswap(n, zx, incx, zy, incy)
ZSWAP
Definition zswap.f:81
subroutine zrscl(n, a, x, incx)
ZDRSCL multiplies a vector by the reciprocal of a real scalar.
Definition zrscl.f:84
Here is the call graph for this function:
Here is the caller graph for this function: