143 SUBROUTINE sppsv( UPLO, N, NRHS, AP, B, LDB, INFO )
154 REAL ( * ), B( LDB, * )
174 IF( .NOT.lsame( uplo,
'U' ) .AND.
'L' ) )
THEN
176 ELSE IF( n.LT.0 )
THEN
178 ELSE IF( nrhs.LT.0 )
THEN
180 ELSE IF( ldb.LT.
max( 1, n ) )
THEN
184 CALL xerbla(
'SPPSV ', -info )
190 CALL spptrf( uplo, n, ap, info )
195 CALL spptrs( uplo, n, nrhs, ap, b, ldb, info )
subroutine xerbla(srname, info)
XERBLA
subroutine spptrf(uplo, n, ap, info)
SPPTRF
subroutine spptrs(uplo, n, nrhs, ap, b, ldb, info)
SPPTRS
subroutine sppsv(uplo, n, nrhs, ap, b, ldb, info)
SPPSV computes the solution to system of linear equations A * X = B for OTHER matrices