141 SUBROUTINE sppsv( UPLO, N, NRHS, AP, B, LDB, INFO )
149 INTEGER INFO, LDB, N, NRHS
152 REAL AP( * ), B( LDB, * )
172 IF( .NOT.lsame( uplo,
'U' ) .AND.
173 $ .NOT.lsame( uplo,
'L' ) )
THEN
175 ELSE IF( n.LT.0 )
THEN
177 ELSE IF( nrhs.LT.0 )
THEN
179 ELSE IF( ldb.LT.max( 1, n ) )
THEN
183 CALL xerbla(
'SPPSV ', -info )
189 CALL spptrf( uplo, n, ap, info )
194 CALL spptrs( uplo, n, nrhs, ap, b, ldb, info )
subroutine xerbla(srname, info)
subroutine sppsv(uplo, n, nrhs, ap, b, ldb, info)
SPPSV computes the solution to system of linear equations A * X = B for OTHER matrices
subroutine spptrf(uplo, n, ap, info)
SPPTRF
subroutine spptrs(uplo, n, nrhs, ap, b, ldb, info)
SPPTRS