112 SUBROUTINE cptsv( N, NRHS, D, E, B, LDB, INFO )
119 INTEGER INFO, LDB, N, NRHS
123 COMPLEX B( LDB, * ), E( * )
141 ELSE IF( nrhs.LT.0 )
THEN
143 ELSE IF( ldb.LT.max( 1, n ) )
THEN
147 CALL xerbla(
'CPTSV ', -info )
153 CALL cpttrf( n, d, e, info )
158 CALL cpttrs(
'Lower', n, nrhs, d, e, b, ldb, info )
subroutine xerbla(srname, info)
subroutine cptsv(n, nrhs, d, e, b, ldb, info)
CPTSV computes the solution to system of linear equations A * X = B for PT matrices
subroutine cpttrf(n, d, e, info)
CPTTRF
subroutine cpttrs(uplo, n, nrhs, d, e, b, ldb, info)
CPTTRS