143 SUBROUTINE zppsv( UPLO, N, NRHS, AP, B, LDB, INFO )
151 INTEGER INFO, LDB, N, NRHS
154 COMPLEX*16 AP( * ), B( LDB, * )
174 IF( .NOT.lsame( uplo,
'U' ) .AND. .NOT.lsame( uplo,
'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(
'ZPPSV ', -info )
190 CALL zpptrf( uplo, n, ap, info )
195 CALL zpptrs( uplo, n, nrhs, ap, b, ldb, info )
subroutine xerbla(srname, info)
subroutine zppsv(uplo, n, nrhs, ap, b, ldb, info)
ZPPSV computes the solution to system of linear equations A * X = B for OTHER matrices
subroutine zpptrf(uplo, n, ap, info)
ZPPTRF
subroutine zpptrs(uplo, n, nrhs, ap, b, ldb, info)
ZPPTRS