161 SUBROUTINE zspsv( UPLO, N, NRHS, AP, IPIV, B, LDB, INFO )
169INTEGER , LDB, N, NRHS
173 COMPLEX*16 AP( * ), B( LDB, * )
193 IF( .NOT.lsame( uplo,
'U' ) .AND. .NOT.lsame( uplo,
'L' ) )
THEN
195 ELSE IF( n.LT.0 )
THEN
197 ELSE IF( nrhs.LT.0 )
THEN
199 ELSE IF( ldb.LT.
max( 1, n ) )
THEN
203 CALL xerbla(
'ZSPSV ', -info )
209 CALL zsptrf( uplo, n, ap, ipiv, info )
214 CALL zsptrs( uplo, n, nrhs, ap, ipiv, b, ldb, info )
subroutine xerbla(srname, info)
XERBLA
subroutine zsptrs(uplo, n, nrhs, ap, ipiv, b, ldb, info)
ZSPTRS
subroutine zsptrf(uplo, n, ap, ipiv, info)
ZSPTRF
subroutine zspsv(uplo, n, nrhs, ap, ipiv, b, ldb, info)
ZSPSV computes the solution to system of linear equations A * X = B for OTHER matrices