You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

zgqrts.f 9.9 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333
  1. *> \brief \b ZGQRTS
  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 ZGQRTS( N, M, P, A, AF, Q, R, LDA, TAUA, B, BF, Z, T,
  12. * BWK, LDB, TAUB, WORK, LWORK, RWORK, RESULT )
  13. *
  14. * .. Scalar Arguments ..
  15. * INTEGER LDA, LDB, LWORK, M, N, P
  16. * ..
  17. * .. Array Arguments ..
  18. * DOUBLE PRECISION RESULT( 4 ), RWORK( * )
  19. * COMPLEX*16 A( LDA, * ), AF( LDA, * ), B( LDB, * ),
  20. * $ BF( LDB, * ), BWK( LDB, * ), Q( LDA, * ),
  21. * $ R( LDA, * ), T( LDB, * ), TAUA( * ), TAUB( * ),
  22. * $ WORK( LWORK ), Z( LDB, * )
  23. * ..
  24. *
  25. *
  26. *> \par Purpose:
  27. * =============
  28. *>
  29. *> \verbatim
  30. *>
  31. *> ZGQRTS tests ZGGQRF, which computes the GQR factorization of an
  32. *> N-by-M matrix A and a N-by-P matrix B: A = Q*R and B = Q*T*Z.
  33. *> \endverbatim
  34. *
  35. * Arguments:
  36. * ==========
  37. *
  38. *> \param[in] N
  39. *> \verbatim
  40. *> N is INTEGER
  41. *> The number of rows of the matrices A and B. N >= 0.
  42. *> \endverbatim
  43. *>
  44. *> \param[in] M
  45. *> \verbatim
  46. *> M is INTEGER
  47. *> The number of columns of the matrix A. M >= 0.
  48. *> \endverbatim
  49. *>
  50. *> \param[in] P
  51. *> \verbatim
  52. *> P is INTEGER
  53. *> The number of columns of the matrix B. P >= 0.
  54. *> \endverbatim
  55. *>
  56. *> \param[in] A
  57. *> \verbatim
  58. *> A is COMPLEX*16 array, dimension (LDA,M)
  59. *> The N-by-M matrix A.
  60. *> \endverbatim
  61. *>
  62. *> \param[out] AF
  63. *> \verbatim
  64. *> AF is COMPLEX*16 array, dimension (LDA,N)
  65. *> Details of the GQR factorization of A and B, as returned
  66. *> by ZGGQRF, see CGGQRF for further details.
  67. *> \endverbatim
  68. *>
  69. *> \param[out] Q
  70. *> \verbatim
  71. *> Q is COMPLEX*16 array, dimension (LDA,N)
  72. *> The M-by-M unitary matrix Q.
  73. *> \endverbatim
  74. *>
  75. *> \param[out] R
  76. *> \verbatim
  77. *> R is COMPLEX*16 array, dimension (LDA,MAX(M,N))
  78. *> \endverbatim
  79. *>
  80. *> \param[in] LDA
  81. *> \verbatim
  82. *> LDA is INTEGER
  83. *> The leading dimension of the arrays A, AF, R and Q.
  84. *> LDA >= max(M,N).
  85. *> \endverbatim
  86. *>
  87. *> \param[out] TAUA
  88. *> \verbatim
  89. *> TAUA is COMPLEX*16 array, dimension (min(M,N))
  90. *> The scalar factors of the elementary reflectors, as returned
  91. *> by ZGGQRF.
  92. *> \endverbatim
  93. *>
  94. *> \param[in] B
  95. *> \verbatim
  96. *> B is COMPLEX*16 array, dimension (LDB,P)
  97. *> On entry, the N-by-P matrix A.
  98. *> \endverbatim
  99. *>
  100. *> \param[out] BF
  101. *> \verbatim
  102. *> BF is COMPLEX*16 array, dimension (LDB,N)
  103. *> Details of the GQR factorization of A and B, as returned
  104. *> by ZGGQRF, see CGGQRF for further details.
  105. *> \endverbatim
  106. *>
  107. *> \param[out] Z
  108. *> \verbatim
  109. *> Z is COMPLEX*16 array, dimension (LDB,P)
  110. *> The P-by-P unitary matrix Z.
  111. *> \endverbatim
  112. *>
  113. *> \param[out] T
  114. *> \verbatim
  115. *> T is COMPLEX*16 array, dimension (LDB,max(P,N))
  116. *> \endverbatim
  117. *>
  118. *> \param[out] BWK
  119. *> \verbatim
  120. *> BWK is COMPLEX*16 array, dimension (LDB,N)
  121. *> \endverbatim
  122. *>
  123. *> \param[in] LDB
  124. *> \verbatim
  125. *> LDB is INTEGER
  126. *> The leading dimension of the arrays B, BF, Z and T.
  127. *> LDB >= max(P,N).
  128. *> \endverbatim
  129. *>
  130. *> \param[out] TAUB
  131. *> \verbatim
  132. *> TAUB is COMPLEX*16 array, dimension (min(P,N))
  133. *> The scalar factors of the elementary reflectors, as returned
  134. *> by DGGRQF.
  135. *> \endverbatim
  136. *>
  137. *> \param[out] WORK
  138. *> \verbatim
  139. *> WORK is COMPLEX*16 array, dimension (LWORK)
  140. *> \endverbatim
  141. *>
  142. *> \param[in] LWORK
  143. *> \verbatim
  144. *> LWORK is INTEGER
  145. *> The dimension of the array WORK, LWORK >= max(N,M,P)**2.
  146. *> \endverbatim
  147. *>
  148. *> \param[out] RWORK
  149. *> \verbatim
  150. *> RWORK is DOUBLE PRECISION array, dimension (max(N,M,P))
  151. *> \endverbatim
  152. *>
  153. *> \param[out] RESULT
  154. *> \verbatim
  155. *> RESULT is DOUBLE PRECISION array, dimension (4)
  156. *> The test ratios:
  157. *> RESULT(1) = norm( R - Q'*A ) / ( MAX(M,N)*norm(A)*ULP)
  158. *> RESULT(2) = norm( T*Z - Q'*B ) / (MAX(P,N)*norm(B)*ULP)
  159. *> RESULT(3) = norm( I - Q'*Q ) / ( M*ULP )
  160. *> RESULT(4) = norm( I - Z'*Z ) / ( P*ULP )
  161. *> \endverbatim
  162. *
  163. * Authors:
  164. * ========
  165. *
  166. *> \author Univ. of Tennessee
  167. *> \author Univ. of California Berkeley
  168. *> \author Univ. of Colorado Denver
  169. *> \author NAG Ltd.
  170. *
  171. *> \ingroup complex16_eig
  172. *
  173. * =====================================================================
  174. SUBROUTINE ZGQRTS( N, M, P, A, AF, Q, R, LDA, TAUA, B, BF, Z, T,
  175. $ BWK, LDB, TAUB, WORK, LWORK, RWORK, RESULT )
  176. *
  177. * -- LAPACK test routine --
  178. * -- LAPACK is a software package provided by Univ. of Tennessee, --
  179. * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
  180. *
  181. * .. Scalar Arguments ..
  182. INTEGER LDA, LDB, LWORK, M, N, P
  183. * ..
  184. * .. Array Arguments ..
  185. DOUBLE PRECISION RESULT( 4 ), RWORK( * )
  186. COMPLEX*16 A( LDA, * ), AF( LDA, * ), B( LDB, * ),
  187. $ BF( LDB, * ), BWK( LDB, * ), Q( LDA, * ),
  188. $ R( LDA, * ), T( LDB, * ), TAUA( * ), TAUB( * ),
  189. $ WORK( LWORK ), Z( LDB, * )
  190. * ..
  191. *
  192. * =====================================================================
  193. *
  194. * .. Parameters ..
  195. DOUBLE PRECISION ZERO, ONE
  196. PARAMETER ( ZERO = 0.0D+0, ONE = 1.0D+0 )
  197. COMPLEX*16 CZERO, CONE
  198. PARAMETER ( CZERO = ( 0.0D+0, 0.0D+0 ),
  199. $ CONE = ( 1.0D+0, 0.0D+0 ) )
  200. COMPLEX*16 CROGUE
  201. PARAMETER ( CROGUE = ( -1.0D+10, 0.0D+0 ) )
  202. * ..
  203. * .. Local Scalars ..
  204. INTEGER INFO
  205. DOUBLE PRECISION ANORM, BNORM, RESID, ULP, UNFL
  206. * ..
  207. * .. External Functions ..
  208. DOUBLE PRECISION DLAMCH, ZLANGE, ZLANHE
  209. EXTERNAL DLAMCH, ZLANGE, ZLANHE
  210. * ..
  211. * .. External Subroutines ..
  212. EXTERNAL ZGEMM, ZGGQRF, ZHERK, ZLACPY, ZLASET, ZUNGQR,
  213. $ ZUNGRQ
  214. * ..
  215. * .. Intrinsic Functions ..
  216. INTRINSIC DBLE, MAX, MIN
  217. * ..
  218. * .. Executable Statements ..
  219. *
  220. ULP = DLAMCH( 'Precision' )
  221. UNFL = DLAMCH( 'Safe minimum' )
  222. *
  223. * Copy the matrix A to the array AF.
  224. *
  225. CALL ZLACPY( 'Full', N, M, A, LDA, AF, LDA )
  226. CALL ZLACPY( 'Full', N, P, B, LDB, BF, LDB )
  227. *
  228. ANORM = MAX( ZLANGE( '1', N, M, A, LDA, RWORK ), UNFL )
  229. BNORM = MAX( ZLANGE( '1', N, P, B, LDB, RWORK ), UNFL )
  230. *
  231. * Factorize the matrices A and B in the arrays AF and BF.
  232. *
  233. CALL ZGGQRF( N, M, P, AF, LDA, TAUA, BF, LDB, TAUB, WORK, LWORK,
  234. $ INFO )
  235. *
  236. * Generate the N-by-N matrix Q
  237. *
  238. CALL ZLASET( 'Full', N, N, CROGUE, CROGUE, Q, LDA )
  239. CALL ZLACPY( 'Lower', N-1, M, AF( 2, 1 ), LDA, Q( 2, 1 ), LDA )
  240. CALL ZUNGQR( N, N, MIN( N, M ), Q, LDA, TAUA, WORK, LWORK, INFO )
  241. *
  242. * Generate the P-by-P matrix Z
  243. *
  244. CALL ZLASET( 'Full', P, P, CROGUE, CROGUE, Z, LDB )
  245. IF( N.LE.P ) THEN
  246. IF( N.GT.0 .AND. N.LT.P )
  247. $ CALL ZLACPY( 'Full', N, P-N, BF, LDB, Z( P-N+1, 1 ), LDB )
  248. IF( N.GT.1 )
  249. $ CALL ZLACPY( 'Lower', N-1, N-1, BF( 2, P-N+1 ), LDB,
  250. $ Z( P-N+2, P-N+1 ), LDB )
  251. ELSE
  252. IF( P.GT.1 )
  253. $ CALL ZLACPY( 'Lower', P-1, P-1, BF( N-P+2, 1 ), LDB,
  254. $ Z( 2, 1 ), LDB )
  255. END IF
  256. CALL ZUNGRQ( P, P, MIN( N, P ), Z, LDB, TAUB, WORK, LWORK, INFO )
  257. *
  258. * Copy R
  259. *
  260. CALL ZLASET( 'Full', N, M, CZERO, CZERO, R, LDA )
  261. CALL ZLACPY( 'Upper', N, M, AF, LDA, R, LDA )
  262. *
  263. * Copy T
  264. *
  265. CALL ZLASET( 'Full', N, P, CZERO, CZERO, T, LDB )
  266. IF( N.LE.P ) THEN
  267. CALL ZLACPY( 'Upper', N, N, BF( 1, P-N+1 ), LDB, T( 1, P-N+1 ),
  268. $ LDB )
  269. ELSE
  270. CALL ZLACPY( 'Full', N-P, P, BF, LDB, T, LDB )
  271. CALL ZLACPY( 'Upper', P, P, BF( N-P+1, 1 ), LDB, T( N-P+1, 1 ),
  272. $ LDB )
  273. END IF
  274. *
  275. * Compute R - Q'*A
  276. *
  277. CALL ZGEMM( 'Conjugate transpose', 'No transpose', N, M, N, -CONE,
  278. $ Q, LDA, A, LDA, CONE, R, LDA )
  279. *
  280. * Compute norm( R - Q'*A ) / ( MAX(M,N)*norm(A)*ULP ) .
  281. *
  282. RESID = ZLANGE( '1', N, M, R, LDA, RWORK )
  283. IF( ANORM.GT.ZERO ) THEN
  284. RESULT( 1 ) = ( ( RESID / DBLE( MAX( 1, M, N ) ) ) / ANORM ) /
  285. $ ULP
  286. ELSE
  287. RESULT( 1 ) = ZERO
  288. END IF
  289. *
  290. * Compute T*Z - Q'*B
  291. *
  292. CALL ZGEMM( 'No Transpose', 'No transpose', N, P, P, CONE, T, LDB,
  293. $ Z, LDB, CZERO, BWK, LDB )
  294. CALL ZGEMM( 'Conjugate transpose', 'No transpose', N, P, N, -CONE,
  295. $ Q, LDA, B, LDB, CONE, BWK, LDB )
  296. *
  297. * Compute norm( T*Z - Q'*B ) / ( MAX(P,N)*norm(A)*ULP ) .
  298. *
  299. RESID = ZLANGE( '1', N, P, BWK, LDB, RWORK )
  300. IF( BNORM.GT.ZERO ) THEN
  301. RESULT( 2 ) = ( ( RESID / DBLE( MAX( 1, P, N ) ) ) / BNORM ) /
  302. $ ULP
  303. ELSE
  304. RESULT( 2 ) = ZERO
  305. END IF
  306. *
  307. * Compute I - Q'*Q
  308. *
  309. CALL ZLASET( 'Full', N, N, CZERO, CONE, R, LDA )
  310. CALL ZHERK( 'Upper', 'Conjugate transpose', N, N, -ONE, Q, LDA,
  311. $ ONE, R, LDA )
  312. *
  313. * Compute norm( I - Q'*Q ) / ( N * ULP ) .
  314. *
  315. RESID = ZLANHE( '1', 'Upper', N, R, LDA, RWORK )
  316. RESULT( 3 ) = ( RESID / DBLE( MAX( 1, N ) ) ) / ULP
  317. *
  318. * Compute I - Z'*Z
  319. *
  320. CALL ZLASET( 'Full', P, P, CZERO, CONE, T, LDB )
  321. CALL ZHERK( 'Upper', 'Conjugate transpose', P, P, -ONE, Z, LDB,
  322. $ ONE, T, LDB )
  323. *
  324. * Compute norm( I - Z'*Z ) / ( P*ULP ) .
  325. *
  326. RESID = ZLANHE( '1', 'Upper', P, T, LDB, RWORK )
  327. RESULT( 4 ) = ( RESID / DBLE( MAX( 1, P ) ) ) / ULP
  328. *
  329. RETURN
  330. *
  331. * End of ZGQRTS
  332. *
  333. END