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