101      SUBROUTINE stpttr( UPLO, N, AP, A, LDA, 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( 
'STPTTR', -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...