3 * =========== DOCUMENTATION ===========
5 * Online html documentation available at
6 * http://www.netlib.org/lapack/explore-html/
9 *> Download DORMQL + dependencies
10 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/dormql.f">
12 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/dormql.f">
14 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/dormql.f">
21 * SUBROUTINE DORMQL( SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC,
24 * .. Scalar Arguments ..
25 * CHARACTER SIDE, TRANS
26 * INTEGER INFO, K, LDA, LDC, LWORK, M, N
28 * .. Array Arguments ..
29 * DOUBLE PRECISION A( LDA, * ), C( LDC, * ), TAU( * ), WORK( * )
38 *> DORMQL overwrites the general real M-by-N matrix C with
40 *> SIDE = 'L' SIDE = 'R'
41 *> TRANS = 'N': Q * C C * Q
42 *> TRANS = 'T': Q**T * C C * Q**T
44 *> where Q is a real orthogonal matrix defined as the product of k
45 *> elementary reflectors
47 *> Q = H(k) . . . H(2) H(1)
49 *> as returned by DGEQLF. Q is of order M if SIDE = 'L' and of order N
58 *> SIDE is CHARACTER*1
59 *> = 'L': apply Q or Q**T from the Left;
60 *> = 'R': apply Q or Q**T from the Right.
65 *> TRANS is CHARACTER*1
66 *> = 'N': No transpose, apply Q;
67 *> = 'T': Transpose, apply Q**T.
73 *> The number of rows of the matrix C. M >= 0.
79 *> The number of columns of the matrix C. N >= 0.
85 *> The number of elementary reflectors whose product defines
87 *> If SIDE = 'L', M >= K >= 0;
88 *> if SIDE = 'R', N >= K >= 0.
93 *> A is DOUBLE PRECISION array, dimension (LDA,K)
94 *> The i-th column must contain the vector which defines the
95 *> elementary reflector H(i), for i = 1,2,...,k, as returned by
96 *> DGEQLF in the last k columns of its array argument A.
102 *> The leading dimension of the array A.
103 *> If SIDE = 'L', LDA >= max(1,M);
104 *> if SIDE = 'R', LDA >= max(1,N).
109 *> TAU is DOUBLE PRECISION array, dimension (K)
110 *> TAU(i) must contain the scalar factor of the elementary
111 *> reflector H(i), as returned by DGEQLF.
116 *> C is DOUBLE PRECISION array, dimension (LDC,N)
117 *> On entry, the M-by-N matrix C.
118 *> On exit, C is overwritten by Q*C or Q**T*C or C*Q**T or C*Q.
124 *> The leading dimension of the array C. LDC >= max(1,M).
129 *> WORK is DOUBLE PRECISION array, dimension (MAX(1,LWORK))
130 *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK.
136 *> The dimension of the array WORK.
137 *> If SIDE = 'L', LWORK >= max(1,N);
138 *> if SIDE = 'R', LWORK >= max(1,M).
139 *> For good performance, LWORK should generally be larger.
141 *> If LWORK = -1, then a workspace query is assumed; the routine
142 *> only calculates the optimal size of the WORK array, returns
143 *> this value as the first entry of the WORK array, and no error
144 *> message related to LWORK is issued by XERBLA.
150 *> = 0: successful exit
151 *> < 0: if INFO = -i, the i-th argument had an illegal value
157 *> \author Univ. of Tennessee
158 *> \author Univ. of California Berkeley
159 *> \author Univ. of Colorado Denver
162 *> \date November 2015
164 *> \ingroup doubleOTHERcomputational
166 * =====================================================================
167 SUBROUTINE DORMQL( SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC,
168 $ WORK, LWORK, INFO )
170 * -- LAPACK computational routine (version 3.6.0) --
171 * -- LAPACK is a software package provided by Univ. of Tennessee, --
172 * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
175 * .. Scalar Arguments ..
176 CHARACTER SIDE, TRANS
177 INTEGER INFO, K, LDA, LDC, LWORK, M, N
179 * .. Array Arguments ..
180 DOUBLE PRECISION A( LDA, * ), C( LDC, * ), TAU( * ), WORK( * )
183 * =====================================================================
186 INTEGER NBMAX, LDT, TSIZE
187 PARAMETER ( NBMAX = 64, LDT = NBMAX+1,
188 $ TSIZE = LDT*NBMAX )
190 * .. Local Scalars ..
191 LOGICAL LEFT, LQUERY, NOTRAN
192 INTEGER I, I1, I2, I3, IB, IINFO, IWT, LDWORK, LWKOPT,
193 $ MI, NB, NBMIN, NI, NQ, NW
195 * .. External Functions ..
198 EXTERNAL LSAME, ILAENV
200 * .. External Subroutines ..
201 EXTERNAL DLARFB, DLARFT, DORM2L, XERBLA
203 * .. Intrinsic Functions ..
206 * .. Executable Statements ..
208 * Test the input arguments
211 LEFT = LSAME( SIDE, 'L' )
212 NOTRAN = LSAME( TRANS, 'N' )
213 LQUERY = ( LWORK.EQ.-1 )
215 * NQ is the order of Q and NW is the minimum dimension of WORK
224 IF( .NOT.LEFT .AND. .NOT.LSAME( SIDE, 'R' ) ) THEN
226 ELSE IF( .NOT.NOTRAN .AND. .NOT.LSAME( TRANS, 'T' ) ) THEN
228 ELSE IF( M.LT.0 ) THEN
230 ELSE IF( N.LT.0 ) THEN
232 ELSE IF( K.LT.0 .OR. K.GT.NQ ) THEN
234 ELSE IF( LDA.LT.MAX( 1, NQ ) ) THEN
236 ELSE IF( LDC.LT.MAX( 1, M ) ) THEN
238 ELSE IF( LWORK.LT.NW .AND. .NOT.LQUERY ) THEN
244 * Compute the workspace requirements
246 IF( M.EQ.0 .OR. N.EQ.0 ) THEN
249 NB = MIN( NBMAX, ILAENV( 1, 'DORMQL', SIDE // TRANS, M, N,
251 LWKOPT = NW*NB + TSIZE
257 CALL XERBLA( 'DORMQL', -INFO )
259 ELSE IF( LQUERY ) THEN
263 * Quick return if possible
265 IF( M.EQ.0 .OR. N.EQ.0 ) THEN
271 IF( NB.GT.1 .AND. NB.LT.K ) THEN
272 IF( LWORK.LT.NW*NB+TSIZE ) THEN
273 NB = (LWORK-TSIZE) / LDWORK
274 NBMIN = MAX( 2, ILAENV( 2, 'DORMQL', SIDE // TRANS, M, N, K,
279 IF( NB.LT.NBMIN .OR. NB.GE.K ) THEN
283 CALL DORM2L( SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC, WORK,
290 IF( ( LEFT .AND. NOTRAN ) .OR.
291 $ ( .NOT.LEFT .AND. .NOT.NOTRAN ) ) THEN
296 I1 = ( ( K-1 ) / NB )*NB + 1
308 IB = MIN( NB, K-I+1 )
310 * Form the triangular factor of the block reflector
311 * H = H(i+ib-1) . . . H(i+1) H(i)
313 CALL DLARFT( 'Backward', 'Columnwise', NQ-K+I+IB-1, IB,
314 $ A( 1, I ), LDA, TAU( I ), WORK( IWT ), LDT )
317 * H or H**T is applied to C(1:m-k+i+ib-1,1:n)
319 MI = M - K + I + IB - 1
322 * H or H**T is applied to C(1:m,1:n-k+i+ib-1)
324 NI = N - K + I + IB - 1
329 CALL DLARFB( SIDE, TRANS, 'Backward', 'Columnwise', MI, NI,
330 $ IB, A( 1, I ), LDA, WORK( IWT ), LDT, C, LDC,