113 SUBROUTINE sptsv( N, NRHS, D, E, B, LDB, INFO )
120 INTEGER INFO, LDB, N, NRHS
123 REAL B( LDB, * ), D( * ), E( * )
141 ELSE IF( nrhs.LT.0 )
THEN
143 ELSE IF( ldb.LT.max( 1, n ) )
THEN
147 CALL xerbla(
'SPTSV ', -info )
153 CALL spttrf( n, d, e, info )
158 CALL spttrs( n, nrhs, d, e, b, ldb, info )
subroutine xerbla(SRNAME, INFO)
XERBLA
subroutine spttrf(N, D, E, INFO)
SPTTRF
subroutine spttrs(N, NRHS, D, E, B, LDB, INFO)
SPTTRS
subroutine sptsv(N, NRHS, D, E, B, LDB, INFO)
SPTSV computes the solution to system of linear equations A * X = B for PT matrices