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

SLQT01

Purpose:
 SLQT01 tests SGELQF, which computes the LQ factorization of an m-by-n
 matrix A, and partially tests SORGLQ which forms the n-by-n
 orthogonal matrix Q.

 SLQT01 compares L with A*Q', and checks that Q is orthogonal.
Parameters
[in]M
          M is INTEGER
          The number of rows of the matrix A.  M >= 0.
[in]N
          N is INTEGER
          The number of columns of the matrix A.  N >= 0.
[in]A
          A is REAL array, dimension (LDA,N)
          The m-by-n matrix A.
[out]AF
          AF is REAL array, dimension (LDA,N)
          Details of the LQ factorization of A, as returned by SGELQF.
          See SGELQF for further details.
[out]Q
          Q is REAL array, dimension (LDA,N)
          The n-by-n orthogonal matrix Q.
[out]L
          L is REAL array, dimension (LDA,max(M,N))
[in]LDA
          LDA is INTEGER
          The leading dimension of the arrays A, AF, Q and L.
          LDA >= max(M,N).
[out]TAU
          TAU is REAL array, dimension (min(M,N))
          The scalar factors of the elementary reflectors, as returned
          by SGELQF.
[out]WORK
          WORK is REAL array, dimension (LWORK)
[in]LWORK
          LWORK is INTEGER
          The dimension of the array WORK.
[out]RWORK
          RWORK is REAL array, dimension (max(M,N))
[out]RESULT
          RESULT is REAL array, dimension (2)
          The test ratios:
          RESULT(1) = norm( L - A*Q' ) / ( N * norm(A) * EPS )
          RESULT(2) = norm( I - Q*Q' ) / ( N * EPS )
Author
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.
Date
November 2011

Definition at line 128 of file slqt01.f.

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  REAL a( lda, * ), af( lda, * ), l( lda, * ),
139  $ q( lda, * ), result( * ), rwork( * ), tau( * ),
140  $ work( lwork )
141 * ..
142 *
143 * =====================================================================
144 *
145 * .. Parameters ..
146  REAL zero, one
147  parameter ( zero = 0.0e+0, one = 1.0e+0 )
148  REAL rogue
149  parameter ( rogue = -1.0e+10 )
150 * ..
151 * .. Local Scalars ..
152  INTEGER info, minmn
153  REAL anorm, eps, resid
154 * ..
155 * .. External Functions ..
156  REAL slamch, slange, slansy
157  EXTERNAL slamch, slange, slansy
158 * ..
159 * .. External Subroutines ..
160  EXTERNAL sgelqf, sgemm, slacpy, slaset, sorglq, ssyrk
161 * ..
162 * .. Intrinsic Functions ..
163  INTRINSIC max, min, real
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 = slamch( 'Epsilon' )
175 *
176 * Copy the matrix A to the array AF.
177 *
178  CALL slacpy( 'Full', m, n, a, lda, af, lda )
179 *
180 * Factorize the matrix A in the array AF.
181 *
182  srnamt = 'SGELQF'
183  CALL sgelqf( m, n, af, lda, tau, work, lwork, info )
184 *
185 * Copy details of Q
186 *
187  CALL slaset( 'Full', n, n, rogue, rogue, q, lda )
188  IF( n.GT.1 )
189  $ CALL slacpy( 'Upper', m, n-1, af( 1, 2 ), lda, q( 1, 2 ), lda )
190 *
191 * Generate the n-by-n matrix Q
192 *
193  srnamt = 'SORGLQ'
194  CALL sorglq( n, n, minmn, q, lda, tau, work, lwork, info )
195 *
196 * Copy L
197 *
198  CALL slaset( 'Full', m, n, zero, zero, l, lda )
199  CALL slacpy( 'Lower', m, n, af, lda, l, lda )
200 *
201 * Compute L - A*Q'
202 *
203  CALL sgemm( 'No transpose', 'Transpose', m, n, n, -one, a, lda, q,
204  $ lda, one, l, lda )
205 *
206 * Compute norm( L - Q'*A ) / ( N * norm(A) * EPS ) .
207 *
208  anorm = slange( '1', m, n, a, lda, rwork )
209  resid = slange( '1', m, n, l, lda, rwork )
210  IF( anorm.GT.zero ) THEN
211  result( 1 ) = ( ( resid / REAL( MAX( 1, N ) ) ) / anorm ) / eps
212  ELSE
213  result( 1 ) = zero
214  END IF
215 *
216 * Compute I - Q*Q'
217 *
218  CALL slaset( 'Full', n, n, zero, one, l, lda )
219  CALL ssyrk( 'Upper', 'No transpose', n, n, -one, q, lda, one, l,
220  $ lda )
221 *
222 * Compute norm( I - Q*Q' ) / ( N * EPS ) .
223 *
224  resid = slansy( '1', 'Upper', n, l, lda, rwork )
225 *
226  result( 2 ) = ( resid / REAL( MAX( 1, N ) ) ) / eps
227 *
228  RETURN
229 *
230 * End of SLQT01
231 *
subroutine sorglq(M, N, K, A, LDA, TAU, WORK, LWORK, INFO)
SORGLQ
Definition: sorglq.f:129
subroutine ssyrk(UPLO, TRANS, N, K, ALPHA, A, LDA, BETA, C, LDC)
SSYRK
Definition: ssyrk.f:171
subroutine sgemm(TRANSA, TRANSB, M, N, K, ALPHA, A, LDA, B, LDB, BETA, C, LDC)
SGEMM
Definition: sgemm.f:189
subroutine slacpy(UPLO, M, N, A, LDA, B, LDB)
SLACPY copies all or part of one two-dimensional array to another.
Definition: slacpy.f:105
subroutine slaset(UPLO, M, N, ALPHA, BETA, A, LDA)
SLASET initializes the off-diagonal elements and the diagonal elements of a matrix to given values...
Definition: slaset.f:112
real function slange(NORM, M, N, A, LDA, WORK)
SLANGE returns the value of the 1-norm, Frobenius norm, infinity-norm, or the largest absolute value ...
Definition: slange.f:116
real function slamch(CMACH)
SLAMCH
Definition: slamch.f:69
subroutine sgelqf(M, N, A, LDA, TAU, WORK, LWORK, INFO)
SGELQF
Definition: sgelqf.f:137
real function slansy(NORM, UPLO, N, A, LDA, WORK)
SLANSY returns the value of the 1-norm, or the Frobenius norm, or the infinity norm, or the element of largest absolute value of a real symmetric matrix.
Definition: slansy.f:124

Here is the call graph for this function:

Here is the caller graph for this function: