114 SUBROUTINE zptsv( N, NRHS, D, E, B, LDB, INFO )
121 INTEGER INFO, LDB, N, NRHS
124 DOUBLE PRECISION D( * )
125 COMPLEX*16 B( LDB, * ), E( * )
143 ELSE IF( nrhs.LT.0 )
THEN
145 ELSE IF( ldb.LT.max( 1, n ) )
THEN
149 CALL xerbla(
'ZPTSV ', -info )
155 CALL zpttrf( n, d, e, info )
160 CALL zpttrs(
'Lower', n, nrhs, d, e, b, ldb, info )
subroutine xerbla(SRNAME, INFO)
XERBLA
subroutine zpttrs(UPLO, N, NRHS, D, E, B, LDB, INFO)
ZPTTRS
subroutine zpttrf(N, D, E, INFO)
ZPTTRF
subroutine zptsv(N, NRHS, D, E, B, LDB, INFO)
ZPTSV computes the solution to system of linear equations A * X = B for PT matrices