LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
subroutine cqrt02 ( integer  M,
integer  N,
integer  K,
complex, dimension( lda, * )  A,
complex, dimension( lda, * )  AF,
complex, dimension( lda, * )  Q,
complex, dimension( lda, * )  R,
integer  LDA,
complex, dimension( * )  TAU,
complex, dimension( lwork )  WORK,
integer  LWORK,
real, dimension( * )  RWORK,
real, dimension( * )  RESULT 
)

CQRT02

Purpose:
 CQRT02 tests CUNGQR, which generates an m-by-n matrix Q with
 orthonornmal columns that is defined as the product of k elementary
 reflectors.

 Given the QR factorization of an m-by-n matrix A, CQRT02 generates
 the orthogonal matrix Q defined by the factorization of the first k
 columns of A; it compares R(1:n,1:k) with Q(1:m,1:n)'*A(1:m,1:k),
 and checks that the columns of Q are orthonormal.
Parameters
[in]M
          M is INTEGER
          The number of rows of the matrix Q to be generated.  M >= 0.
[in]N
          N is INTEGER
          The number of columns of the matrix Q to be generated.
          M >= N >= 0.
[in]K
          K is INTEGER
          The number of elementary reflectors whose product defines the
          matrix Q. N >= K >= 0.
[in]A
          A is COMPLEX array, dimension (LDA,N)
          The m-by-n matrix A which was factorized by CQRT01.
[in]AF
          AF is COMPLEX array, dimension (LDA,N)
          Details of the QR factorization of A, as returned by CGEQRF.
          See CGEQRF for further details.
[out]Q
          Q is COMPLEX array, dimension (LDA,N)
[out]R
          R is COMPLEX array, dimension (LDA,N)
[in]LDA
          LDA is INTEGER
          The leading dimension of the arrays A, AF, Q and R. LDA >= M.
[in]TAU
          TAU is COMPLEX array, dimension (N)
          The scalar factors of the elementary reflectors corresponding
          to the QR factorization in AF.
[out]WORK
          WORK is COMPLEX array, dimension (LWORK)
[in]LWORK
          LWORK is INTEGER
          The dimension of the array WORK.
[out]RWORK
          RWORK is REAL array, dimension (M)
[out]RESULT
          RESULT is REAL array, dimension (2)
          The test ratios:
          RESULT(1) = norm( R - Q'*A ) / ( M * norm(A) * EPS )
          RESULT(2) = norm( I - Q'*Q ) / ( M * EPS )
Author
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.
Date
November 2011

Definition at line 137 of file cqrt02.f.

137 *
138 * -- LAPACK test routine (version 3.4.0) --
139 * -- LAPACK is a software package provided by Univ. of Tennessee, --
140 * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
141 * November 2011
142 *
143 * .. Scalar Arguments ..
144  INTEGER k, lda, lwork, m, n
145 * ..
146 * .. Array Arguments ..
147  REAL result( * ), rwork( * )
148  COMPLEX a( lda, * ), af( lda, * ), q( lda, * ),
149  $ r( lda, * ), tau( * ), work( lwork )
150 * ..
151 *
152 * =====================================================================
153 *
154 * .. Parameters ..
155  REAL zero, one
156  parameter ( zero = 0.0e+0, one = 1.0e+0 )
157  COMPLEX rogue
158  parameter ( rogue = ( -1.0e+10, -1.0e+10 ) )
159 * ..
160 * .. Local Scalars ..
161  INTEGER info
162  REAL anorm, eps, resid
163 * ..
164 * .. External Functions ..
165  REAL clange, clansy, slamch
166  EXTERNAL clange, clansy, slamch
167 * ..
168 * .. External Subroutines ..
169  EXTERNAL cgemm, cherk, clacpy, claset, cungqr
170 * ..
171 * .. Intrinsic Functions ..
172  INTRINSIC cmplx, max, real
173 * ..
174 * .. Scalars in Common ..
175  CHARACTER*32 srnamt
176 * ..
177 * .. Common blocks ..
178  COMMON / srnamc / srnamt
179 * ..
180 * .. Executable Statements ..
181 *
182  eps = slamch( 'Epsilon' )
183 *
184 * Copy the first k columns of the factorization to the array Q
185 *
186  CALL claset( 'Full', m, n, rogue, rogue, q, lda )
187  CALL clacpy( 'Lower', m-1, k, af( 2, 1 ), lda, q( 2, 1 ), lda )
188 *
189 * Generate the first n columns of the matrix Q
190 *
191  srnamt = 'CUNGQR'
192  CALL cungqr( m, n, k, q, lda, tau, work, lwork, info )
193 *
194 * Copy R(1:n,1:k)
195 *
196  CALL claset( 'Full', n, k, cmplx( zero ), cmplx( zero ), r, lda )
197  CALL clacpy( 'Upper', n, k, af, lda, r, lda )
198 *
199 * Compute R(1:n,1:k) - Q(1:m,1:n)' * A(1:m,1:k)
200 *
201  CALL cgemm( 'Conjugate transpose', 'No transpose', n, k, m,
202  $ cmplx( -one ), q, lda, a, lda, cmplx( one ), r, lda )
203 *
204 * Compute norm( R - Q'*A ) / ( M * norm(A) * EPS ) .
205 *
206  anorm = clange( '1', m, k, a, lda, rwork )
207  resid = clange( '1', n, k, r, lda, rwork )
208  IF( anorm.GT.zero ) THEN
209  result( 1 ) = ( ( resid / REAL( MAX( 1, M ) ) ) / anorm ) / eps
210  ELSE
211  result( 1 ) = zero
212  END IF
213 *
214 * Compute I - Q'*Q
215 *
216  CALL claset( 'Full', n, n, cmplx( zero ), cmplx( one ), r, lda )
217  CALL cherk( 'Upper', 'Conjugate transpose', n, m, -one, q, lda,
218  $ one, r, lda )
219 *
220 * Compute norm( I - Q'*Q ) / ( M * EPS ) .
221 *
222  resid = clansy( '1', 'Upper', n, r, lda, rwork )
223 *
224  result( 2 ) = ( resid / REAL( MAX( 1, M ) ) ) / eps
225 *
226  RETURN
227 *
228 * End of CQRT02
229 *
subroutine cherk(UPLO, TRANS, N, K, ALPHA, A, LDA, BETA, C, LDC)
CHERK
Definition: cherk.f:175
real function clange(NORM, M, N, A, LDA, WORK)
CLANGE returns the value of the 1-norm, Frobenius norm, infinity-norm, or the largest absolute value ...
Definition: clange.f:117
subroutine claset(UPLO, M, N, ALPHA, BETA, A, LDA)
CLASET initializes the off-diagonal elements and the diagonal elements of a matrix to given values...
Definition: claset.f:108
real function clansy(NORM, UPLO, N, A, LDA, WORK)
CLANSY returns the value of the 1-norm, or the Frobenius norm, or the infinity norm, or the element of largest absolute value of a complex symmetric matrix.
Definition: clansy.f:125
subroutine clacpy(UPLO, M, N, A, LDA, B, LDB)
CLACPY copies all or part of one two-dimensional array to another.
Definition: clacpy.f:105
real function slamch(CMACH)
SLAMCH
Definition: slamch.f:69
subroutine cungqr(M, N, K, A, LDA, TAU, WORK, LWORK, INFO)
CUNGQR
Definition: cungqr.f:130
subroutine cgemm(TRANSA, TRANSB, M, N, K, ALPHA, A, LDA, B, LDB, BETA, C, LDC)
CGEMM
Definition: cgemm.f:189

Here is the call graph for this function:

Here is the caller graph for this function: