105 SUBROUTINE spptrs( UPLO, N, NRHS, AP, B, LDB, INFO )
113 INTEGER INFO, LDB, N, NRHS
116 REAL AP( * ), B( LDB, * )
140 upper = lsame( uplo,
'U' )
141 IF( .NOT.upper .AND. .NOT.lsame( uplo,
'L' ) )
THEN
143 ELSE IF( n.LT.0 )
THEN
145 ELSE IF( nrhs.LT.0 )
THEN
147 ELSE IF( ldb.LT.max( 1, n ) )
THEN
151 CALL xerbla(
'SPPTRS', -info )
157 IF( n.EQ.0 .OR. nrhs.EQ.0 )
168 CALL stpsv(
'Upper',
'Transpose',
'Non-unit', n, ap,
173 CALL stpsv(
'Upper',
'No transpose',
'Non-unit', n, ap,
184 CALL stpsv(
'Lower',
'No transpose',
'Non-unit', n, ap,
189 CALL stpsv(
'Lower',
'Transpose',
'Non-unit', n, ap,
subroutine xerbla(srname, info)
subroutine spptrs(uplo, n, nrhs, ap, b, ldb, info)
SPPTRS
subroutine stpsv(uplo, trans, diag, n, ap, x, incx)
STPSV