131 SUBROUTINE dgeqr2p( M, N, A, LDA, TAU, WORK, INFO )
138 INTEGER INFO, LDA, M, N
141 DOUBLE PRECISION A( LDA, * ), TAU( * ), WORK( * )
148 parameter( one = 1.0d+0 )
166 ELSE IF( n.LT.0 )
THEN
168 ELSE IF( lda.LT.max( 1, m ) )
THEN
172 CALL xerbla(
'DGEQR2P', -info )
182 CALL dlarfgp( m-i+1, a( i, i ), a( min( i+1, m ), i ), 1,
188 CALL dlarf1f(
'Left', m-i+1, n-i, a( i, i ), 1, tau( i ),
189 $ a( i, i+1 ), lda, work )
subroutine dgeqr2p(m, n, a, lda, tau, work, info)
DGEQR2P computes the QR factorization of a general rectangular matrix with non-negative diagonal elem...
subroutine dlarf1f(side, m, n, v, incv, tau, c, ldc, work)
DLARF1F applies an elementary reflector to a general rectangular
subroutine dlarfgp(n, alpha, x, incx, tau)
DLARFGP generates an elementary reflector (Householder matrix) with non-negative beta.