112 SUBROUTINE zptsv( N, NRHS, D, E, B, LDB, INFO )
119 INTEGER INFO, LDB, N, NRHS
122 DOUBLE PRECISION D( * )
123 COMPLEX*16 B( LDB, * ), E( * )
141 ELSE IF( nrhs.LT.0 )
THEN
143 ELSE IF( ldb.LT.max( 1, n ) )
THEN
147 CALL xerbla(
'ZPTSV ', -info )
153 CALL zpttrf( n, d, e, info )
158 CALL zpttrs(
'Lower', n, nrhs, d, e, b, ldb, info )
subroutine xerbla(srname, info)
subroutine zptsv(n, nrhs, d, e, b, ldb, info)
ZPTSV computes the solution to system of linear equations A * X = B for PT matrices
subroutine zpttrf(n, d, e, info)
ZPTTRF
subroutine zpttrs(uplo, n, nrhs, d, e, b, ldb, info)
ZPTTRS