LAPACK 3.12.1
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches
zgelqt3.f
Go to the documentation of this file.
1*> \brief \b ZGELQT3 recursively computes a LQ factorization of a general real or complex matrix using the compact WY representation of Q.
2*
3* =========== DOCUMENTATION ===========
4*
5* Online html documentation available at
6* http://www.netlib.org/lapack/explore-html/
7*
8*> Download ZGELQT3 + dependencies
9*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/zgelqt3.f">
10*> [TGZ]</a>
11*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/zgelqt3.f">
12*> [ZIP]</a>
13*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/zgelqt3.f">
14*> [TXT]</a>
15*
16* Definition:
17* ===========
18*
19* RECURSIVE SUBROUTINE ZGELQT3( M, N, A, LDA, T, LDT, INFO )
20*
21* .. Scalar Arguments ..
22* INTEGER INFO, LDA, M, N, LDT
23* ..
24* .. Array Arguments ..
25* COMPLEX*16 A( LDA, * ), T( LDT, * )
26* ..
27*
28*
29*> \par Purpose:
30* =============
31*>
32*> \verbatim
33*>
34*> ZGELQT3 recursively computes a LQ factorization of a complex M-by-N
35*> matrix A, using the compact WY representation of Q.
36*>
37*> Based on the algorithm of Elmroth and Gustavson,
38*> IBM J. Res. Develop. Vol 44 No. 4 July 2000.
39*> \endverbatim
40*
41* Arguments:
42* ==========
43*
44*> \param[in] M
45*> \verbatim
46*> M is INTEGER
47*> The number of rows of the matrix A. M =< N.
48*> \endverbatim
49*>
50*> \param[in] N
51*> \verbatim
52*> N is INTEGER
53*> The number of columns of the matrix A. N >= 0.
54*> \endverbatim
55*>
56*> \param[in,out] A
57*> \verbatim
58*> A is COMPLEX*16 array, dimension (LDA,N)
59*> On entry, the complex M-by-N matrix A. On exit, the elements on and
60*> below the diagonal contain the N-by-N lower triangular matrix L; the
61*> elements above the diagonal are the rows of V. See below for
62*> further details.
63*> \endverbatim
64*>
65*> \param[in] LDA
66*> \verbatim
67*> LDA is INTEGER
68*> The leading dimension of the array A. LDA >= max(1,M).
69*> \endverbatim
70*>
71*> \param[out] T
72*> \verbatim
73*> T is COMPLEX*16 array, dimension (LDT,N)
74*> The N-by-N upper triangular factor of the block reflector.
75*> The elements on and above the diagonal contain the block
76*> reflector T; the elements below the diagonal are not used.
77*> See below for further details.
78*> \endverbatim
79*>
80*> \param[in] LDT
81*> \verbatim
82*> LDT is INTEGER
83*> The leading dimension of the array T. LDT >= max(1,N).
84*> \endverbatim
85*>
86*> \param[out] INFO
87*> \verbatim
88*> INFO is INTEGER
89*> = 0: successful exit
90*> < 0: if INFO = -i, the i-th argument had an illegal value
91*> \endverbatim
92*
93* Authors:
94* ========
95*
96*> \author Univ. of Tennessee
97*> \author Univ. of California Berkeley
98*> \author Univ. of Colorado Denver
99*> \author NAG Ltd.
100*
101*> \ingroup gelqt3
102*
103*> \par Further Details:
104* =====================
105*>
106*> \verbatim
107*>
108*> The matrix V stores the elementary reflectors H(i) in the i-th row
109*> above the diagonal. For example, if M=5 and N=3, the matrix V is
110*>
111*> V = ( 1 v1 v1 v1 v1 )
112*> ( 1 v2 v2 v2 )
113*> ( 1 v3 v3 v3 )
114*>
115*>
116*> where the vi's represent the vectors which define H(i), which are returned
117*> in the matrix A. The 1's along the diagonal of V are not stored in A. The
118*> block reflector H is then given by
119*>
120*> H = I - V * T * V**T
121*>
122*> where V**T is the transpose of V.
123*>
124*> For details of the algorithm, see Elmroth and Gustavson (cited above).
125*> \endverbatim
126*>
127* =====================================================================
128 RECURSIVE SUBROUTINE zgelqt3( M, N, A, LDA, T, LDT, INFO )
129*
130* -- LAPACK computational routine --
131* -- LAPACK is a software package provided by Univ. of Tennessee, --
132* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
133*
134* .. Scalar Arguments ..
135 INTEGER info, lda, m, n, ldt
136* ..
137* .. Array Arguments ..
138 COMPLEX*16 a( lda, * ), t( ldt, * )
139* ..
140*
141* =====================================================================
142*
143* .. Parameters ..
144 COMPLEX*16 one, zero
145 parameter( one = (1.0d+00,0.0d+00) )
146 parameter( zero = (0.0d+00,0.0d+00))
147* ..
148* .. Local Scalars ..
149 INTEGER i, i1, j, j1, m1, m2, iinfo
150* ..
151* .. External Subroutines ..
152 EXTERNAL zlarfg, ztrmm, zgemm, xerbla
153* ..
154* .. Executable Statements ..
155*
156 info = 0
157 IF( m .LT. 0 ) THEN
158 info = -1
159 ELSE IF( n .LT. m ) THEN
160 info = -2
161 ELSE IF( lda .LT. max( 1, m ) ) THEN
162 info = -4
163 ELSE IF( ldt .LT. max( 1, m ) ) THEN
164 info = -6
165 END IF
166 IF( info.NE.0 ) THEN
167 CALL xerbla( 'ZGELQT3', -info )
168 RETURN
169 END IF
170*
171 IF( m.EQ.1 ) THEN
172*
173* Compute Householder transform when M=1
174*
175 CALL zlarfg( n, a( 1, 1 ), a( 1, min( 2, n ) ), lda,
176 & t( 1, 1 ) )
177 t(1,1)=conjg(t(1,1))
178*
179 ELSE
180*
181* Otherwise, split A into blocks...
182*
183 m1 = m/2
184 m2 = m-m1
185 i1 = min( m1+1, m )
186 j1 = min( m+1, n )
187*
188* Compute A(1:M1,1:N) <- (Y1,R1,T1), where Q1 = I - Y1 T1 Y1^H
189*
190 CALL zgelqt3( m1, n, a, lda, t, ldt, iinfo )
191*
192* Compute A(J1:M,1:N) = A(J1:M,1:N) Q1^H [workspace: T(1:N1,J1:N)]
193*
194 DO i=1,m2
195 DO j=1,m1
196 t( i+m1, j ) = a( i+m1, j )
197 END DO
198 END DO
199 CALL ztrmm( 'R', 'U', 'C', 'U', m2, m1, one,
200 & a, lda, t( i1, 1 ), ldt )
201*
202 CALL zgemm( 'N', 'C', m2, m1, n-m1, one, a( i1, i1 ), lda,
203 & a( 1, i1 ), lda, one, t( i1, 1 ), ldt)
204*
205 CALL ztrmm( 'R', 'U', 'N', 'N', m2, m1, one,
206 & t, ldt, t( i1, 1 ), ldt )
207*
208 CALL zgemm( 'N', 'N', m2, n-m1, m1, -one, t( i1, 1 ), ldt,
209 & a( 1, i1 ), lda, one, a( i1, i1 ), lda )
210*
211 CALL ztrmm( 'R', 'U', 'N', 'U', m2, m1 , one,
212 & a, lda, t( i1, 1 ), ldt )
213*
214 DO i=1,m2
215 DO j=1,m1
216 a( i+m1, j ) = a( i+m1, j ) - t( i+m1, j )
217 t( i+m1, j )= zero
218 END DO
219 END DO
220*
221* Compute A(J1:M,J1:N) <- (Y2,R2,T2) where Q2 = I - Y2 T2 Y2^H
222*
223 CALL zgelqt3( m2, n-m1, a( i1, i1 ), lda,
224 & t( i1, i1 ), ldt, iinfo )
225*
226* Compute T3 = T(J1:N1,1:N) = -T1 Y1^H Y2 T2
227*
228 DO i=1,m2
229 DO j=1,m1
230 t( j, i+m1 ) = (a( j, i+m1 ))
231 END DO
232 END DO
233*
234 CALL ztrmm( 'R', 'U', 'C', 'U', m1, m2, one,
235 & a( i1, i1 ), lda, t( 1, i1 ), ldt )
236*
237 CALL zgemm( 'N', 'C', m1, m2, n-m, one, a( 1, j1 ), lda,
238 & a( i1, j1 ), lda, one, t( 1, i1 ), ldt )
239*
240 CALL ztrmm( 'L', 'U', 'N', 'N', m1, m2, -one, t, ldt,
241 & t( 1, i1 ), ldt )
242*
243 CALL ztrmm( 'R', 'U', 'N', 'N', m1, m2, one,
244 & t( i1, i1 ), ldt, t( 1, i1 ), ldt )
245*
246*
247*
248* Y = (Y1,Y2); L = [ L1 0 ]; T = [T1 T3]
249* [ A(1:N1,J1:N) L2 ] [ 0 T2]
250*
251 END IF
252*
253 RETURN
254*
255* End of ZGELQT3
256*
257 END
subroutine xerbla(srname, info)
Definition cblat2.f:3285
recursive subroutine zgelqt3(m, n, a, lda, t, ldt, info)
ZGELQT3 recursively computes a LQ factorization of a general real or complex matrix using the compact...
Definition zgelqt3.f:129
subroutine zgemm(transa, transb, m, n, k, alpha, a, lda, b, ldb, beta, c, ldc)
ZGEMM
Definition zgemm.f:188
subroutine zlarfg(n, alpha, x, incx, tau)
ZLARFG generates an elementary reflector (Householder matrix).
Definition zlarfg.f:104
subroutine ztrmm(side, uplo, transa, diag, m, n, alpha, a, lda, b, ldb)
ZTRMM
Definition ztrmm.f:177