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