159 SUBROUTINE dspsv( UPLO, N, NRHS, AP, IPIV, B, LDB, INFO )
167 INTEGER INFO, LDB, N, NRHS
171 DOUBLE PRECISION AP( * ), B( LDB, * )
191 IF( .NOT.lsame( uplo,
'U' ) .AND.
192 $ .NOT.lsame( uplo,
'L' ) )
THEN
194 ELSE IF( n.LT.0 )
THEN
196 ELSE IF( nrhs.LT.0 )
THEN
198 ELSE IF( ldb.LT.max( 1, n ) )
THEN
202 CALL xerbla(
'DSPSV ', -info )
208 CALL dsptrf( uplo, n, ap, ipiv, info )
213 CALL dsptrs( uplo, n, nrhs, ap, ipiv, b, ldb, info )
subroutine xerbla(srname, info)
subroutine dspsv(uplo, n, nrhs, ap, ipiv, b, ldb, info)
DSPSV computes the solution to system of linear equations A * X = B for OTHER matrices
subroutine dsptrf(uplo, n, ap, ipiv, info)
DSPTRF
subroutine dsptrs(uplo, n, nrhs, ap, ipiv, b, ldb, info)
DSPTRS