101 SUBROUTINE strttp( UPLO, N, A, LDA, AP, INFO )
112 REAL A( LDA, * ), AP( * )
135 lower = lsame( uplo,
'L' )
136 IF( .NOT.lower .AND. .NOT.lsame( uplo,
'U' ) )
THEN
138 ELSE IF( n.LT.0 )
THEN
140 ELSE IF( lda.LT.max( 1, n ) )
THEN
144 CALL xerbla(
'STRTTP', -info )
subroutine strttp(uplo, n, a, lda, ap, info)
STRTTP copies a triangular matrix from the standard full format (TR) to the standard packed format (T...