116 SUBROUTINE zptsv( N, NRHS, D, E, B, LDB, INFO )
124 INTEGER INFO, LDB, N, NRHS
127 DOUBLE PRECISION D( * )
128 COMPLEX*16 B( ldb, * ), E( * )
146 ELSE IF( nrhs.LT.0 )
THEN
148 ELSE IF( ldb.LT.max( 1, n ) )
THEN
152 CALL xerbla(
'ZPTSV ', -info )
158 CALL zpttrf( n, d, e, info )
163 CALL zpttrs(
'Lower', n, nrhs, d, e, b, ldb, info )
subroutine zpttrs(UPLO, N, NRHS, D, E, B, LDB, INFO)
ZPTTRS
subroutine zpttrf(N, D, E, INFO)
ZPTTRF
subroutine xerbla(SRNAME, INFO)
XERBLA
subroutine zptsv(N, NRHS, D, E, B, LDB, INFO)
ZPTSV computes the solution to system of linear equations A * X = B for PT matrices ...