OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
srqt01.f
Go to the documentation of this file.
1*> \brief \b SRQT01
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 SRQT01( M, N, A, AF, Q, R, LDA, TAU, WORK, LWORK,
12* RWORK, RESULT )
13*
14* .. Scalar Arguments ..
15* INTEGER LDA, LWORK, M, N
16* ..
17* .. Array Arguments ..
18* REAL A( LDA, * ), AF( LDA, * ), Q( LDA, * ),
19* $ R( LDA, * ), RESULT( * ), RWORK( * ), TAU( * ),
20* $ WORK( LWORK )
21* ..
22*
23*
24*> \par Purpose:
25* =============
26*>
27*> \verbatim
28*>
29*> SRQT01 tests SGERQF, which computes the RQ factorization of an m-by-n
30*> matrix A, and partially tests SORGRQ which forms the n-by-n
31*> orthogonal matrix Q.
32*>
33*> SRQT01 compares R 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 REAL array, dimension (LDA,N)
54*> The m-by-n matrix A.
55*> \endverbatim
56*>
57*> \param[out] AF
58*> \verbatim
59*> AF is REAL array, dimension (LDA,N)
60*> Details of the RQ factorization of A, as returned by SGERQF.
61*> See SGERQF for further details.
62*> \endverbatim
63*>
64*> \param[out] Q
65*> \verbatim
66*> Q is REAL array, dimension (LDA,N)
67*> The n-by-n orthogonal matrix Q.
68*> \endverbatim
69*>
70*> \param[out] R
71*> \verbatim
72*> R is REAL 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 REAL array, dimension (min(M,N))
85*> The scalar factors of the elementary reflectors, as returned
86*> by SGERQF.
87*> \endverbatim
88*>
89*> \param[out] WORK
90*> \verbatim
91*> WORK is REAL 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 REAL array, dimension (max(M,N))
103*> \endverbatim
104*>
105*> \param[out] RESULT
106*> \verbatim
107*> RESULT is REAL array, dimension (2)
108*> The test ratios:
109*> RESULT(1) = norm( R - 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*> \ingroup single_lin
122*
123* =====================================================================
124 SUBROUTINE srqt01( M, N, A, AF, Q, R, LDA, TAU, WORK, LWORK,
125 $ RWORK, RESULT )
126*
127* -- LAPACK test routine --
128* -- LAPACK is a software package provided by Univ. of Tennessee, --
129* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
130*
131* .. Scalar Arguments ..
132 INTEGER LDA, LWORK, M, N
133* ..
134* .. Array Arguments ..
135 REAL A( LDA, * ), AF( LDA, * ), Q( LDA, * ),
136 $ r( lda, * ), result( * ), rwork( * ), tau( * ),
137 $ work( lwork )
138* ..
139*
140* =====================================================================
141*
142* .. Parameters ..
143 REAL ZERO, ONE
144 parameter( zero = 0.0e+0, one = 1.0e+0 )
145 REAL ROGUE
146 parameter( rogue = -1.0e+10 )
147* ..
148* .. Local Scalars ..
149 INTEGER INFO, MINMN
150 REAL ANORM, EPS, RESID
151* ..
152* .. External Functions ..
153 REAL SLAMCH, SLANGE, SLANSY
154 EXTERNAL slamch, slange, slansy
155* ..
156* .. External Subroutines ..
157 EXTERNAL sgemm, sgerqf, slacpy, slaset, sorgrq, ssyrk
158* ..
159* .. Intrinsic Functions ..
160 INTRINSIC max, min, real
161* ..
162* .. Scalars in Common ..
163 CHARACTER*32 SRNAMT
164* ..
165* .. Common blocks ..
166 COMMON / srnamc / srnamt
167* ..
168* .. Executable Statements ..
169*
170 minmn = min( m, n )
171 eps = slamch( 'Epsilon' )
172*
173* Copy the matrix A to the array AF.
174*
175 CALL slacpy( 'Full', m, n, a, lda, af, lda )
176*
177* Factorize the matrix A in the array AF.
178*
179 srnamt = 'SGERQF'
180 CALL sgerqf( m, n, af, lda, tau, work, lwork, info )
181*
182* Copy details of Q
183*
184 CALL slaset( 'Full', n, n, rogue, rogue, q, lda )
185 IF( m.LE.n ) THEN
186 IF( m.GT.0 .AND. m.LT.n )
187 $ CALL slacpy( 'Full', m, n-m, af, lda, q( n-m+1, 1 ), lda )
188 IF( m.GT.1 )
189 $ CALL slacpy( 'Lower', m-1, m-1, af( 2, n-m+1 ), lda,
190 $ q( n-m+2, n-m+1 ), lda )
191 ELSE
192 IF( n.GT.1 )
193 $ CALL slacpy( 'lower', N-1, N-1, AF( M-N+2, 1 ), LDA,
194 $ Q( 2, 1 ), LDA )
195 END IF
196*
197* Generate the n-by-n matrix Q
198*
199 SRNAMT = 'sorgrq'
200 CALL SORGRQ( N, N, MINMN, Q, LDA, TAU, WORK, LWORK, INFO )
201*
202* Copy R
203*
204 CALL SLASET( 'full', M, N, ZERO, ZERO, R, LDA )
205.LE. IF( MN ) THEN
206.GT. IF( M0 )
207 $ CALL SLACPY( 'upper', M, M, AF( 1, N-M+1 ), LDA,
208 $ R( 1, N-M+1 ), LDA )
209 ELSE
210.GT..AND..GT. IF( MN N0 )
211 $ CALL SLACPY( 'full', M-N, N, AF, LDA, R, LDA )
212.GT. IF( N0 )
213 $ CALL SLACPY( 'upper', N, N, AF( M-N+1, 1 ), LDA,
214 $ R( M-N+1, 1 ), LDA )
215 END IF
216*
217* Compute R - A*Q'
218*
219 CALL SGEMM( 'no transpose', 'transpose', M, N, N, -ONE, A, LDA, Q,
220 $ LDA, ONE, R, LDA )
221*
222* Compute norm( R - Q'*A ) / ( N * norm(A) * EPS ) .
223*
224 ANORM = SLANGE( '1', M, N, A, LDA, RWORK )
225 RESID = SLANGE( '1', M, N, R, LDA, RWORK )
226.GT. IF( ANORMZERO ) THEN
227 RESULT( 1 ) = ( ( RESID / REAL( MAX( 1, N ) ) ) / ANORM ) / EPS
228 ELSE
229 RESULT( 1 ) = ZERO
230 END IF
231*
232* Compute I - Q*Q'
233*
234 CALL SLASET( 'full', N, N, ZERO, ONE, R, LDA )
235 CALL SSYRK( 'upper', 'no transpose', N, N, -ONE, Q, LDA, ONE, R,
236 $ LDA )
237*
238* Compute norm( I - Q*Q' ) / ( N * EPS ) .
239*
240 RESID = SLANSY( '1', 'upper', N, R, LDA, RWORK )
241*
242 RESULT( 2 ) = ( RESID / REAL( MAX( 1, N ) ) ) / EPS
243*
244 RETURN
245*
246* End of SRQT01
247*
248 END
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:110
subroutine slacpy(uplo, m, n, a, lda, b, ldb)
SLACPY copies all or part of one two-dimensional array to another.
Definition slacpy.f:103
subroutine sgerqf(m, n, a, lda, tau, work, lwork, info)
SGERQF
Definition sgerqf.f:139
subroutine sorgrq(m, n, k, a, lda, tau, work, lwork, info)
SORGRQ
Definition sorgrq.f:128
subroutine ssyrk(uplo, trans, n, k, alpha, a, lda, beta, c, ldc)
SSYRK
Definition ssyrk.f:169
subroutine sgemm(transa, transb, m, n, k, alpha, a, lda, b, ldb, beta, c, ldc)
SGEMM
Definition sgemm.f:187
subroutine srqt01(m, n, a, af, q, r, lda, tau, work, lwork, rwork, result)
SRQT01
Definition srqt01.f:126
#define min(a, b)
Definition macros.h:20
#define max(a, b)
Definition macros.h:21