103 SUBROUTINE ztpttr( UPLO, N, AP, A, LDA, INFO )
114 COMPLEX*16 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(
'ZTPTTR', -info )
subroutine xerbla(srname, info)
subroutine ztpttr(uplo, n, ap, a, lda, info)
ZTPTTR copies a triangular matrix from the standard packed format (TP) to the standard full format (T...