103 SUBROUTINE ctrttp( UPLO, N, A, LDA, AP, INFO )
114 COMPLEX A( LDA, * ), AP( * )
137 lower = lsame( uplo,
'L' )
138 IF( .NOT.lower .AND. .NOT.lsame( uplo,
'U' ) )
THEN
140 ELSE IF( n.LT.0 )
THEN
142 ELSE IF( lda.LT.max( 1, n ) )
THEN
146 CALL xerbla(
'CTRTTP', -info )
subroutine xerbla(srname, info)
subroutine ctrttp(uplo, n, a, lda, ap, info)
CTRTTP copies a triangular matrix from the standard full format (TR) to the standard packed format (T...