161 SUBROUTINE zpbsv( UPLO, N, KD, NRHS, AB, LDAB, B, LDB, INFO )
169 INTEGER INFO, KD, LDAB, LDB, N, NRHS
172 COMPLEX*16 AB( LDAB, * ), B( LDB, * )
192 IF( .NOT.lsame( uplo,
'U' ) .AND.
193 $ .NOT.lsame( uplo,
'L' ) )
THEN
195 ELSE IF( n.LT.0 )
THEN
197 ELSE IF( kd.LT.0 )
THEN
199 ELSE IF( nrhs.LT.0 )
THEN
201 ELSE IF( ldab.LT.kd+1 )
THEN
203 ELSE IF( ldb.LT.max( 1, n ) )
THEN
207 CALL xerbla(
'ZPBSV ', -info )
213 CALL zpbtrf( uplo, n, kd, ab, ldab, info )
218 CALL zpbtrs( uplo, n, kd, nrhs, ab, ldab, b, ldb, info )
subroutine zpbsv(uplo, n, kd, nrhs, ab, ldab, b, ldb, info)
ZPBSV computes the solution to system of linear equations A * X = B for OTHER matrices
subroutine zpbtrs(uplo, n, kd, nrhs, ab, ldab, b, ldb, info)
ZPBTRS