1 *> \brief \b ZTFTTP copies a triangular matrix from the rectangular full packed format (TF) to the standard packed format (TP).
3 * =========== DOCUMENTATION ===========
5 * Online html documentation available at
6 * http://www.netlib.org/lapack/explore-html/
9 *> Download ZTFTTP + dependencies
10 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/ztfttp.f">
12 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/ztfttp.f">
14 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/ztfttp.f">
21 * SUBROUTINE ZTFTTP( TRANSR, UPLO, N, ARF, AP, INFO )
23 * .. Scalar Arguments ..
24 * CHARACTER TRANSR, UPLO
27 * .. Array Arguments ..
28 * COMPLEX*16 AP( 0: * ), ARF( 0: * )
37 *> ZTFTTP copies a triangular matrix A from rectangular full packed
38 *> format (TF) to standard packed format (TP).
46 *> TRANSR is CHARACTER*1
47 *> = 'N': ARF is in Normal format;
48 *> = 'C': ARF is in Conjugate-transpose format;
53 *> UPLO is CHARACTER*1
54 *> = 'U': A is upper triangular;
55 *> = 'L': A is lower triangular.
61 *> The order of the matrix A. N >= 0.
66 *> ARF is COMPLEX*16 array, dimension ( N*(N+1)/2 ),
67 *> On entry, the upper or lower triangular matrix A stored in
68 *> RFP format. For a further discussion see Notes below.
73 *> AP is COMPLEX*16 array, dimension ( N*(N+1)/2 ),
74 *> On exit, the upper or lower triangular matrix A, packed
75 *> columnwise in a linear array. The j-th column of A is stored
76 *> in the array AP as follows:
77 *> if UPLO = 'U', AP(i + (j-1)*j/2) = A(i,j) for 1<=i<=j;
78 *> if UPLO = 'L', AP(i + (j-1)*(2n-j)/2) = A(i,j) for j<=i<=n.
84 *> = 0: successful exit
85 *> < 0: if INFO = -i, the i-th argument had an illegal value
91 *> \author Univ. of Tennessee
92 *> \author Univ. of California Berkeley
93 *> \author Univ. of Colorado Denver
96 *> \date September 2012
98 *> \ingroup complex16OTHERcomputational
100 *> \par Further Details:
101 * =====================
105 *> We first consider Standard Packed Format when N is even.
106 *> We give an example where N = 6.
108 *> AP is Upper AP is Lower
110 *> 00 01 02 03 04 05 00
111 *> 11 12 13 14 15 10 11
112 *> 22 23 24 25 20 21 22
113 *> 33 34 35 30 31 32 33
114 *> 44 45 40 41 42 43 44
115 *> 55 50 51 52 53 54 55
118 *> Let TRANSR = 'N'. RFP holds AP as follows:
119 *> For UPLO = 'U' the upper trapezoid A(0:5,0:2) consists of the last
120 *> three columns of AP upper. The lower triangle A(4:6,0:2) consists of
121 *> conjugate-transpose of the first three columns of AP upper.
122 *> For UPLO = 'L' the lower trapezoid A(1:6,0:2) consists of the first
123 *> three columns of AP lower. The upper triangle A(0:2,0:2) consists of
124 *> conjugate-transpose of the last three columns of AP lower.
125 *> To denote conjugate we place -- above the element. This covers the
126 *> case N even and TRANSR = 'N'.
145 *> Now let TRANSR = 'C'. RFP A in both UPLO cases is just the conjugate-
146 *> transpose of RFP A above. One therefore gets:
151 *> -- -- -- -- -- -- -- -- -- --
152 *> 03 13 23 33 00 01 02 33 00 10 20 30 40 50
153 *> -- -- -- -- -- -- -- -- -- --
154 *> 04 14 24 34 44 11 12 43 44 11 21 31 41 51
155 *> -- -- -- -- -- -- -- -- -- --
156 *> 05 15 25 35 45 55 22 53 54 55 22 32 42 52
159 *> We next consider Standard Packed Format when N is odd.
160 *> We give an example where N = 5.
162 *> AP is Upper AP is Lower
171 *> Let TRANSR = 'N'. RFP holds AP as follows:
172 *> For UPLO = 'U' the upper trapezoid A(0:4,0:2) consists of the last
173 *> three columns of AP upper. The lower triangle A(3:4,0:1) consists of
174 *> conjugate-transpose of the first two columns of AP upper.
175 *> For UPLO = 'L' the lower trapezoid A(0:4,0:2) consists of the first
176 *> three columns of AP lower. The upper triangle A(0:1,1:2) consists of
177 *> conjugate-transpose of the last two columns of AP lower.
178 *> To denote conjugate we place -- above the element. This covers the
179 *> case N odd and TRANSR = 'N'.
194 *> Now let TRANSR = 'C'. RFP A in both UPLO cases is just the conjugate-
195 *> transpose of RFP A above. One therefore gets:
200 *> -- -- -- -- -- -- -- -- --
201 *> 02 12 22 00 01 00 10 20 30 40 50
202 *> -- -- -- -- -- -- -- -- --
203 *> 03 13 23 33 11 33 11 21 31 41 51
204 *> -- -- -- -- -- -- -- -- --
205 *> 04 14 24 34 44 43 44 22 32 42 52
208 * =====================================================================
209 SUBROUTINE ZTFTTP( TRANSR, UPLO, N, ARF, AP, INFO )
211 * -- LAPACK computational routine (version 3.4.2) --
212 * -- LAPACK is a software package provided by Univ. of Tennessee, --
213 * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
216 * .. Scalar Arguments ..
217 CHARACTER TRANSR, UPLO
220 * .. Array Arguments ..
221 COMPLEX*16 AP( 0: * ), ARF( 0: * )
224 * =====================================================================
228 * .. Local Scalars ..
229 LOGICAL LOWER, NISODD, NORMALTRANSR
230 INTEGER N1, N2, K, NT
232 INTEGER IJP, JP, LDA, JS
234 * .. External Functions ..
238 * .. External Subroutines ..
241 * .. Intrinsic Functions ..
244 * .. Intrinsic Functions ..
246 * .. Executable Statements ..
248 * Test the input parameters.
251 NORMALTRANSR = LSAME( TRANSR, 'N' )
252 LOWER = LSAME( UPLO, 'L' )
253 IF( .NOT.NORMALTRANSR .AND. .NOT.LSAME( TRANSR, 'C' ) ) THEN
255 ELSE IF( .NOT.LOWER .AND. .NOT.LSAME( UPLO, 'U' ) ) THEN
257 ELSE IF( N.LT.0 ) THEN
261 CALL XERBLA( 'ZTFTTP', -INFO )
265 * Quick return if possible
271 IF( NORMALTRANSR ) THEN
274 AP( 0 ) = DCONJG( ARF( 0 ) )
279 * Size of array ARF(0:NT-1)
283 * Set N1 and N2 depending on LOWER
293 * If N is odd, set NISODD = .TRUE.
294 * If N is even, set K = N/2 and NISODD = .FALSE.
296 * set lda of ARF^C; ARF^C is (0:(N+1)/2-1,0:N-noe)
297 * where noe = 0 if n is even, noe = 1 if n is odd
299 IF( MOD( N, 2 ).EQ.0 ) THEN
308 * ARF^C has lda rows and n+1-noe cols
310 IF( .NOT.NORMALTRANSR )
313 * start execution: there are eight cases
319 IF( NORMALTRANSR ) THEN
321 * N is odd and TRANSR = 'N'
325 * SRPA for LOWER, NORMAL and N is odd ( a(0:n-1,0:n1-1) )
326 * T1 -> a(0,0), T2 -> a(0,1), S -> a(n1,0)
327 * T1 -> a(0), T2 -> a(n), S -> a(n1); lda = n
334 AP( IJP ) = ARF( IJ )
342 AP( IJP ) = DCONJG( ARF( IJ ) )
349 * SRPA for UPPER, NORMAL and N is odd ( a(0:n-1,0:n2-1)
350 * T1 -> a(n1+1,0), T2 -> a(n1,0), S -> a(0,0)
351 * T1 -> a(n2), T2 -> a(n1), S -> a(0)
357 AP( IJP ) = DCONJG( ARF( IJ ) )
366 AP( IJP ) = ARF( IJ )
376 * N is odd and TRANSR = 'C'
380 * SRPA for LOWER, TRANSPOSE and N is odd
381 * T1 -> A(0,0) , T2 -> A(1,0) , S -> A(0,n1)
382 * T1 -> a(0+0) , T2 -> a(1+0) , S -> a(0+n1*n1); lda=n1
386 DO IJ = I*( LDA+1 ), N*LDA - 1, LDA
387 AP( IJP ) = DCONJG( ARF( IJ ) )
393 DO IJ = JS, JS + N2 - J - 1
394 AP( IJP ) = ARF( IJ )
402 * SRPA for UPPER, TRANSPOSE and N is odd
403 * T1 -> A(0,n1+1), T2 -> A(0,n1), S -> A(0,0)
404 * T1 -> a(n2*n2), T2 -> a(n1*n2), S -> a(0); lda = n2
410 AP( IJP ) = ARF( IJ )
416 DO IJ = I, I + ( N1+I )*LDA, LDA
417 AP( IJP ) = DCONJG( ARF( IJ ) )
430 IF( NORMALTRANSR ) THEN
432 * N is even and TRANSR = 'N'
436 * SRPA for LOWER, NORMAL, and N is even ( a(0:n,0:k-1) )
437 * T1 -> a(1,0), T2 -> a(0,0), S -> a(k+1,0)
438 * T1 -> a(1), T2 -> a(0), S -> a(k+1)
445 AP( IJP ) = ARF( IJ )
453 AP( IJP ) = DCONJG( ARF( IJ ) )
460 * SRPA for UPPER, NORMAL, and N is even ( a(0:n,0:k-1) )
461 * T1 -> a(k+1,0) , T2 -> a(k,0), S -> a(0,0)
462 * T1 -> a(k+1), T2 -> a(k), S -> a(0)
468 AP( IJP ) = DCONJG( ARF( IJ ) )
477 AP( IJP ) = ARF( IJ )
487 * N is even and TRANSR = 'C'
491 * SRPA for LOWER, TRANSPOSE and N is even (see paper)
492 * T1 -> B(0,1), T2 -> B(0,0), S -> B(0,k+1)
493 * T1 -> a(0+k), T2 -> a(0+0), S -> a(0+k*(k+1)); lda=k
497 DO IJ = I + ( I+1 )*LDA, ( N+1 )*LDA - 1, LDA
498 AP( IJP ) = DCONJG( ARF( IJ ) )
504 DO IJ = JS, JS + K - J - 1
505 AP( IJP ) = ARF( IJ )
513 * SRPA for UPPER, TRANSPOSE and N is even (see paper)
514 * T1 -> B(0,k+1), T2 -> B(0,k), S -> B(0,0)
515 * T1 -> a(0+k*(k+1)), T2 -> a(0+k*k), S -> a(0+0)); lda=k
521 AP( IJP ) = ARF( IJ )
527 DO IJ = I, I + ( K+I )*LDA, LDA
528 AP( IJP ) = DCONJG( ARF( IJ ) )