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.

cunmtr.f 8.9 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. *> \brief \b CUNMTR
  2. *
  3. * =========== DOCUMENTATION ===========
  4. *
  5. * Online html documentation available at
  6. * http://www.netlib.org/lapack/explore-html/
  7. *
  8. *> \htmlonly
  9. *> Download CUNMTR + dependencies
  10. *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/cunmtr.f">
  11. *> [TGZ]</a>
  12. *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/cunmtr.f">
  13. *> [ZIP]</a>
  14. *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/cunmtr.f">
  15. *> [TXT]</a>
  16. *> \endhtmlonly
  17. *
  18. * Definition:
  19. * ===========
  20. *
  21. * SUBROUTINE CUNMTR( SIDE, UPLO, TRANS, M, N, A, LDA, TAU, C, LDC,
  22. * WORK, LWORK, INFO )
  23. *
  24. * .. Scalar Arguments ..
  25. * CHARACTER SIDE, TRANS, UPLO
  26. * INTEGER INFO, LDA, LDC, LWORK, M, N
  27. * ..
  28. * .. Array Arguments ..
  29. * COMPLEX A( LDA, * ), C( LDC, * ), TAU( * ),
  30. * $ WORK( * )
  31. * ..
  32. *
  33. *
  34. *> \par Purpose:
  35. * =============
  36. *>
  37. *> \verbatim
  38. *>
  39. *> CUNMTR overwrites the general complex M-by-N matrix C with
  40. *>
  41. *> SIDE = 'L' SIDE = 'R'
  42. *> TRANS = 'N': Q * C C * Q
  43. *> TRANS = 'C': Q**H * C C * Q**H
  44. *>
  45. *> where Q is a complex unitary matrix of order nq, with nq = m if
  46. *> SIDE = 'L' and nq = n if SIDE = 'R'. Q is defined as the product of
  47. *> nq-1 elementary reflectors, as returned by CHETRD:
  48. *>
  49. *> if UPLO = 'U', Q = H(nq-1) . . . H(2) H(1);
  50. *>
  51. *> if UPLO = 'L', Q = H(1) H(2) . . . H(nq-1).
  52. *> \endverbatim
  53. *
  54. * Arguments:
  55. * ==========
  56. *
  57. *> \param[in] SIDE
  58. *> \verbatim
  59. *> SIDE is CHARACTER*1
  60. *> = 'L': apply Q or Q**H from the Left;
  61. *> = 'R': apply Q or Q**H from the Right.
  62. *> \endverbatim
  63. *>
  64. *> \param[in] UPLO
  65. *> \verbatim
  66. *> UPLO is CHARACTER*1
  67. *> = 'U': Upper triangle of A contains elementary reflectors
  68. *> from CHETRD;
  69. *> = 'L': Lower triangle of A contains elementary reflectors
  70. *> from CHETRD.
  71. *> \endverbatim
  72. *>
  73. *> \param[in] TRANS
  74. *> \verbatim
  75. *> TRANS is CHARACTER*1
  76. *> = 'N': No transpose, apply Q;
  77. *> = 'C': Conjugate transpose, apply Q**H.
  78. *> \endverbatim
  79. *>
  80. *> \param[in] M
  81. *> \verbatim
  82. *> M is INTEGER
  83. *> The number of rows of the matrix C. M >= 0.
  84. *> \endverbatim
  85. *>
  86. *> \param[in] N
  87. *> \verbatim
  88. *> N is INTEGER
  89. *> The number of columns of the matrix C. N >= 0.
  90. *> \endverbatim
  91. *>
  92. *> \param[in] A
  93. *> \verbatim
  94. *> A is COMPLEX array, dimension
  95. *> (LDA,M) if SIDE = 'L'
  96. *> (LDA,N) if SIDE = 'R'
  97. *> The vectors which define the elementary reflectors, as
  98. *> returned by CHETRD.
  99. *> \endverbatim
  100. *>
  101. *> \param[in] LDA
  102. *> \verbatim
  103. *> LDA is INTEGER
  104. *> The leading dimension of the array A.
  105. *> LDA >= max(1,M) if SIDE = 'L'; LDA >= max(1,N) if SIDE = 'R'.
  106. *> \endverbatim
  107. *>
  108. *> \param[in] TAU
  109. *> \verbatim
  110. *> TAU is COMPLEX array, dimension
  111. *> (M-1) if SIDE = 'L'
  112. *> (N-1) if SIDE = 'R'
  113. *> TAU(i) must contain the scalar factor of the elementary
  114. *> reflector H(i), as returned by CHETRD.
  115. *> \endverbatim
  116. *>
  117. *> \param[in,out] C
  118. *> \verbatim
  119. *> C is COMPLEX array, dimension (LDC,N)
  120. *> On entry, the M-by-N matrix C.
  121. *> On exit, C is overwritten by Q*C or Q**H*C or C*Q**H or C*Q.
  122. *> \endverbatim
  123. *>
  124. *> \param[in] LDC
  125. *> \verbatim
  126. *> LDC is INTEGER
  127. *> The leading dimension of the array C. LDC >= max(1,M).
  128. *> \endverbatim
  129. *>
  130. *> \param[out] WORK
  131. *> \verbatim
  132. *> WORK is COMPLEX array, dimension (MAX(1,LWORK))
  133. *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK.
  134. *> \endverbatim
  135. *>
  136. *> \param[in] LWORK
  137. *> \verbatim
  138. *> LWORK is INTEGER
  139. *> The dimension of the array WORK.
  140. *> If SIDE = 'L', LWORK >= max(1,N);
  141. *> if SIDE = 'R', LWORK >= max(1,M).
  142. *> For optimum performance LWORK >= N*NB if SIDE = 'L', and
  143. *> LWORK >=M*NB if SIDE = 'R', where NB is the optimal
  144. *> blocksize.
  145. *>
  146. *> If LWORK = -1, then a workspace query is assumed; the routine
  147. *> only calculates the optimal size of the WORK array, returns
  148. *> this value as the first entry of the WORK array, and no error
  149. *> message related to LWORK is issued by XERBLA.
  150. *> \endverbatim
  151. *>
  152. *> \param[out] INFO
  153. *> \verbatim
  154. *> INFO is INTEGER
  155. *> = 0: successful exit
  156. *> < 0: if INFO = -i, the i-th argument had an illegal value
  157. *> \endverbatim
  158. *
  159. * Authors:
  160. * ========
  161. *
  162. *> \author Univ. of Tennessee
  163. *> \author Univ. of California Berkeley
  164. *> \author Univ. of Colorado Denver
  165. *> \author NAG Ltd.
  166. *
  167. *> \date December 2016
  168. *
  169. *> \ingroup complexOTHERcomputational
  170. *
  171. * =====================================================================
  172. SUBROUTINE CUNMTR( SIDE, UPLO, TRANS, M, N, A, LDA, TAU, C, LDC,
  173. $ WORK, LWORK, INFO )
  174. *
  175. * -- LAPACK computational routine (version 3.7.0) --
  176. * -- LAPACK is a software package provided by Univ. of Tennessee, --
  177. * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
  178. * December 2016
  179. *
  180. * .. Scalar Arguments ..
  181. CHARACTER SIDE, TRANS, UPLO
  182. INTEGER INFO, LDA, LDC, LWORK, M, N
  183. * ..
  184. * .. Array Arguments ..
  185. COMPLEX A( LDA, * ), C( LDC, * ), TAU( * ),
  186. $ WORK( * )
  187. * ..
  188. *
  189. * =====================================================================
  190. *
  191. * .. Local Scalars ..
  192. LOGICAL LEFT, LQUERY, UPPER
  193. INTEGER I1, I2, IINFO, LWKOPT, MI, NB, NI, NQ, NW
  194. * ..
  195. * .. External Functions ..
  196. LOGICAL LSAME
  197. INTEGER ILAENV
  198. EXTERNAL ILAENV, LSAME
  199. * ..
  200. * .. External Subroutines ..
  201. EXTERNAL CUNMQL, CUNMQR, XERBLA
  202. * ..
  203. * .. Intrinsic Functions ..
  204. INTRINSIC MAX
  205. * ..
  206. * .. Executable Statements ..
  207. *
  208. * Test the input arguments
  209. *
  210. INFO = 0
  211. LEFT = LSAME( SIDE, 'L' )
  212. UPPER = LSAME( UPLO, 'U' )
  213. LQUERY = ( LWORK.EQ.-1 )
  214. *
  215. * NQ is the order of Q and NW is the minimum dimension of WORK
  216. *
  217. IF( LEFT ) THEN
  218. NQ = M
  219. NW = N
  220. ELSE
  221. NQ = N
  222. NW = M
  223. END IF
  224. IF( .NOT.LEFT .AND. .NOT.LSAME( SIDE, 'R' ) ) THEN
  225. INFO = -1
  226. ELSE IF( .NOT.UPPER .AND. .NOT.LSAME( UPLO, 'L' ) ) THEN
  227. INFO = -2
  228. ELSE IF( .NOT.LSAME( TRANS, 'N' ) .AND. .NOT.LSAME( TRANS, 'C' ) )
  229. $ THEN
  230. INFO = -3
  231. ELSE IF( M.LT.0 ) THEN
  232. INFO = -4
  233. ELSE IF( N.LT.0 ) THEN
  234. INFO = -5
  235. ELSE IF( LDA.LT.MAX( 1, NQ ) ) THEN
  236. INFO = -7
  237. ELSE IF( LDC.LT.MAX( 1, M ) ) THEN
  238. INFO = -10
  239. ELSE IF( LWORK.LT.MAX( 1, NW ) .AND. .NOT.LQUERY ) THEN
  240. INFO = -12
  241. END IF
  242. *
  243. IF( INFO.EQ.0 ) THEN
  244. IF( UPPER ) THEN
  245. IF( LEFT ) THEN
  246. NB = ILAENV( 1, 'CUNMQL', SIDE // TRANS, M-1, N, M-1,
  247. $ -1 )
  248. ELSE
  249. NB = ILAENV( 1, 'CUNMQL', SIDE // TRANS, M, N-1, N-1,
  250. $ -1 )
  251. END IF
  252. ELSE
  253. IF( LEFT ) THEN
  254. NB = ILAENV( 1, 'CUNMQR', SIDE // TRANS, M-1, N, M-1,
  255. $ -1 )
  256. ELSE
  257. NB = ILAENV( 1, 'CUNMQR', SIDE // TRANS, M, N-1, N-1,
  258. $ -1 )
  259. END IF
  260. END IF
  261. LWKOPT = MAX( 1, NW )*NB
  262. WORK( 1 ) = LWKOPT
  263. END IF
  264. *
  265. IF( INFO.NE.0 ) THEN
  266. CALL XERBLA( 'CUNMTR', -INFO )
  267. RETURN
  268. ELSE IF( LQUERY ) THEN
  269. RETURN
  270. END IF
  271. *
  272. * Quick return if possible
  273. *
  274. IF( M.EQ.0 .OR. N.EQ.0 .OR. NQ.EQ.1 ) THEN
  275. WORK( 1 ) = 1
  276. RETURN
  277. END IF
  278. *
  279. IF( LEFT ) THEN
  280. MI = M - 1
  281. NI = N
  282. ELSE
  283. MI = M
  284. NI = N - 1
  285. END IF
  286. *
  287. IF( UPPER ) THEN
  288. *
  289. * Q was determined by a call to CHETRD with UPLO = 'U'
  290. *
  291. CALL CUNMQL( SIDE, TRANS, MI, NI, NQ-1, A( 1, 2 ), LDA, TAU, C,
  292. $ LDC, WORK, LWORK, IINFO )
  293. ELSE
  294. *
  295. * Q was determined by a call to CHETRD with UPLO = 'L'
  296. *
  297. IF( LEFT ) THEN
  298. I1 = 2
  299. I2 = 1
  300. ELSE
  301. I1 = 1
  302. I2 = 2
  303. END IF
  304. CALL CUNMQR( SIDE, TRANS, MI, NI, NQ-1, A( 2, 1 ), LDA, TAU,
  305. $ C( I1, I2 ), LDC, WORK, LWORK, IINFO )
  306. END IF
  307. WORK( 1 ) = LWKOPT
  308. RETURN
  309. *
  310. * End of CUNMTR
  311. *
  312. END