113 SUBROUTINE dptsv( N, NRHS, D, E, B, LDB, INFO )
120 INTEGER INFO, LDB, N, NRHS
123 DOUBLE PRECISION B( LDB, * ), D( * ), E( * )
141 ELSE IF( nrhs.LT.0 )
THEN
143 ELSE IF( ldb.LT.
max( 1, n ) )
THEN
147 CALL xerbla(
'DPTSV ', -info )
153 CALL dpttrf( n, d, e, info )
158 CALL dpttrs( n, nrhs, d, e, b, ldb, info )
subroutine xerbla(srname, info)
XERBLA
subroutine dpttrf(n, d, e, info)
DPTTRF
subroutine dpttrs(n, nrhs, d, e, b, ldb, info)
DPTTRS
subroutine dptsv(n, nrhs, d, e, b, ldb, info)
DPTSV computes the solution to system of linear equations A * X = B for PT matrices