127 SUBROUTINE dgeqr2( M, N, A, LDA, TAU, WORK, INFO )
134 INTEGER INFO, LDA, M, N
137 DOUBLE PRECISION A( LDA, * ), TAU( * ), WORK( * )
144 parameter( one = 1.0d+0 )
162 ELSE IF( n.LT.0 )
THEN
164 ELSE IF( lda.LT.max( 1, m ) )
THEN
168 CALL xerbla(
'DGEQR2', -info )
178 CALL dlarfg( m-i+1, a( i, i ), a( min( i+1, m ), i ), 1,
184 CALL dlarf1f(
'Left', m-i+1, n-i, a( i, i ), 1, tau( i ),
185 $ a( i, i+1 ), lda, work )
subroutine dgeqr2(m, n, a, lda, tau, work, info)
DGEQR2 computes the QR factorization of a general rectangular matrix using an unblocked algorithm.
subroutine dlarf1f(side, m, n, v, incv, tau, c, ldc, work)
DLARF1F applies an elementary reflector to a general rectangular
subroutine dlarfg(n, alpha, x, incx, tau)
DLARFG generates an elementary reflector (Householder matrix).