LAPACK  3.4.2
LAPACK: Linear Algebra PACKage
 All Files Functions Groups
zlqt01.f
Go to the documentation of this file.
1 *> \brief \b ZLQT01
2 *
3 * =========== DOCUMENTATION ===========
4 *
5 * Online html documentation available at
6 * http://www.netlib.org/lapack/explore-html/
7 *
8 * Definition:
9 * ===========
10 *
11 * SUBROUTINE ZLQT01( M, N, A, AF, Q, L, LDA, TAU, WORK, LWORK,
12 * RWORK, RESULT )
13 *
14 * .. Scalar Arguments ..
15 * INTEGER LDA, LWORK, M, N
16 * ..
17 * .. Array Arguments ..
18 * DOUBLE PRECISION RESULT( * ), RWORK( * )
19 * COMPLEX*16 A( LDA, * ), AF( LDA, * ), L( LDA, * ),
20 * $ Q( LDA, * ), TAU( * ), WORK( LWORK )
21 * ..
22 *
23 *
24 *> \par Purpose:
25 * =============
26 *>
27 *> \verbatim
28 *>
29 *> ZLQT01 tests ZGELQF, which computes the LQ factorization of an m-by-n
30 *> matrix A, and partially tests ZUNGLQ which forms the n-by-n
31 *> orthogonal matrix Q.
32 *>
33 *> ZLQT01 compares L with A*Q', and checks that Q is orthogonal.
34 *> \endverbatim
35 *
36 * Arguments:
37 * ==========
38 *
39 *> \param[in] M
40 *> \verbatim
41 *> M is INTEGER
42 *> The number of rows of the matrix A. M >= 0.
43 *> \endverbatim
44 *>
45 *> \param[in] N
46 *> \verbatim
47 *> N is INTEGER
48 *> The number of columns of the matrix A. N >= 0.
49 *> \endverbatim
50 *>
51 *> \param[in] A
52 *> \verbatim
53 *> A is COMPLEX*16 array, dimension (LDA,N)
54 *> The m-by-n matrix A.
55 *> \endverbatim
56 *>
57 *> \param[out] AF
58 *> \verbatim
59 *> AF is COMPLEX*16 array, dimension (LDA,N)
60 *> Details of the LQ factorization of A, as returned by ZGELQF.
61 *> See ZGELQF for further details.
62 *> \endverbatim
63 *>
64 *> \param[out] Q
65 *> \verbatim
66 *> Q is COMPLEX*16 array, dimension (LDA,N)
67 *> The n-by-n orthogonal matrix Q.
68 *> \endverbatim
69 *>
70 *> \param[out] L
71 *> \verbatim
72 *> L is COMPLEX*16 array, dimension (LDA,max(M,N))
73 *> \endverbatim
74 *>
75 *> \param[in] LDA
76 *> \verbatim
77 *> LDA is INTEGER
78 *> The leading dimension of the arrays A, AF, Q and L.
79 *> LDA >= max(M,N).
80 *> \endverbatim
81 *>
82 *> \param[out] TAU
83 *> \verbatim
84 *> TAU is COMPLEX*16 array, dimension (min(M,N))
85 *> The scalar factors of the elementary reflectors, as returned
86 *> by ZGELQF.
87 *> \endverbatim
88 *>
89 *> \param[out] WORK
90 *> \verbatim
91 *> WORK is COMPLEX*16 array, dimension (LWORK)
92 *> \endverbatim
93 *>
94 *> \param[in] LWORK
95 *> \verbatim
96 *> LWORK is INTEGER
97 *> The dimension of the array WORK.
98 *> \endverbatim
99 *>
100 *> \param[out] RWORK
101 *> \verbatim
102 *> RWORK is DOUBLE PRECISION array, dimension (max(M,N))
103 *> \endverbatim
104 *>
105 *> \param[out] RESULT
106 *> \verbatim
107 *> RESULT is DOUBLE PRECISION array, dimension (2)
108 *> The test ratios:
109 *> RESULT(1) = norm( L - A*Q' ) / ( N * norm(A) * EPS )
110 *> RESULT(2) = norm( I - Q*Q' ) / ( N * EPS )
111 *> \endverbatim
112 *
113 * Authors:
114 * ========
115 *
116 *> \author Univ. of Tennessee
117 *> \author Univ. of California Berkeley
118 *> \author Univ. of Colorado Denver
119 *> \author NAG Ltd.
120 *
121 *> \date November 2011
122 *
123 *> \ingroup complex16_lin
124 *
125 * =====================================================================
126  SUBROUTINE zlqt01( M, N, A, AF, Q, L, LDA, TAU, WORK, LWORK,
127  $ rwork, result )
128 *
129 * -- LAPACK test routine (version 3.4.0) --
130 * -- LAPACK is a software package provided by Univ. of Tennessee, --
131 * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
132 * November 2011
133 *
134 * .. Scalar Arguments ..
135  INTEGER lda, lwork, m, n
136 * ..
137 * .. Array Arguments ..
138  DOUBLE PRECISION result( * ), rwork( * )
139  COMPLEX*16 a( lda, * ), af( lda, * ), l( lda, * ),
140  $ q( lda, * ), tau( * ), work( lwork )
141 * ..
142 *
143 * =====================================================================
144 *
145 * .. Parameters ..
146  DOUBLE PRECISION zero, one
147  parameter( zero = 0.0d+0, one = 1.0d+0 )
148  COMPLEX*16 rogue
149  parameter( rogue = ( -1.0d+10, -1.0d+10 ) )
150 * ..
151 * .. Local Scalars ..
152  INTEGER info, minmn
153  DOUBLE PRECISION anorm, eps, resid
154 * ..
155 * .. External Functions ..
156  DOUBLE PRECISION dlamch, zlange, zlansy
157  EXTERNAL dlamch, zlange, zlansy
158 * ..
159 * .. External Subroutines ..
160  EXTERNAL zgelqf, zgemm, zherk, zlacpy, zlaset, zunglq
161 * ..
162 * .. Intrinsic Functions ..
163  INTRINSIC dble, dcmplx, max, min
164 * ..
165 * .. Scalars in Common ..
166  CHARACTER*32 srnamt
167 * ..
168 * .. Common blocks ..
169  common / srnamc / srnamt
170 * ..
171 * .. Executable Statements ..
172 *
173  minmn = min( m, n )
174  eps = dlamch( 'Epsilon' )
175 *
176 * Copy the matrix A to the array AF.
177 *
178  CALL zlacpy( 'Full', m, n, a, lda, af, lda )
179 *
180 * Factorize the matrix A in the array AF.
181 *
182  srnamt = 'ZGELQF'
183  CALL zgelqf( m, n, af, lda, tau, work, lwork, info )
184 *
185 * Copy details of Q
186 *
187  CALL zlaset( 'Full', n, n, rogue, rogue, q, lda )
188  IF( n.GT.1 )
189  $ CALL zlacpy( 'Upper', m, n-1, af( 1, 2 ), lda, q( 1, 2 ), lda )
190 *
191 * Generate the n-by-n matrix Q
192 *
193  srnamt = 'ZUNGLQ'
194  CALL zunglq( n, n, minmn, q, lda, tau, work, lwork, info )
195 *
196 * Copy L
197 *
198  CALL zlaset( 'Full', m, n, dcmplx( zero ), dcmplx( zero ), l,
199  $ lda )
200  CALL zlacpy( 'Lower', m, n, af, lda, l, lda )
201 *
202 * Compute L - A*Q'
203 *
204  CALL zgemm( 'No transpose', 'Conjugate transpose', m, n, n,
205  $ dcmplx( -one ), a, lda, q, lda, dcmplx( one ), l,
206  $ lda )
207 *
208 * Compute norm( L - Q'*A ) / ( N * norm(A) * EPS ) .
209 *
210  anorm = zlange( '1', m, n, a, lda, rwork )
211  resid = zlange( '1', m, n, l, lda, rwork )
212  IF( anorm.GT.zero ) THEN
213  result( 1 ) = ( ( resid / dble( max( 1, n ) ) ) / anorm ) / eps
214  ELSE
215  result( 1 ) = zero
216  END IF
217 *
218 * Compute I - Q*Q'
219 *
220  CALL zlaset( 'Full', n, n, dcmplx( zero ), dcmplx( one ), l, lda )
221  CALL zherk( 'Upper', 'No transpose', n, n, -one, q, lda, one, l,
222  $ lda )
223 *
224 * Compute norm( I - Q*Q' ) / ( N * EPS ) .
225 *
226  resid = zlansy( '1', 'Upper', n, l, lda, rwork )
227 *
228  result( 2 ) = ( resid / dble( max( 1, n ) ) ) / eps
229 *
230  return
231 *
232 * End of ZLQT01
233 *
234  END