131 SUBROUTINE zposv( UPLO, N, NRHS, A, LDA, B, LDB, INFO )
140 INTEGER INFO, LDA, LDB, N, NRHS
143 COMPLEX*16 A( lda, * ), B( ldb, * )
163 IF( .NOT.lsame( uplo,
'U' ) .AND. .NOT.lsame( uplo,
'L' ) )
THEN
165 ELSE IF( n.LT.0 )
THEN
167 ELSE IF( nrhs.LT.0 )
THEN
169 ELSE IF( lda.LT.max( 1, n ) )
THEN
171 ELSE IF( ldb.LT.max( 1, n ) )
THEN
175 CALL xerbla(
'ZPOSV ', -info )
181 CALL zpotrf( uplo, n, a, lda, info )
186 CALL zpotrs( uplo, n, nrhs, a, lda, b, ldb, info )
subroutine zpotrf(UPLO, N, A, LDA, INFO)
ZPOTRF VARIANT: right looking block version of the algorithm, calling Level 3 BLAS.
subroutine zposv(UPLO, N, NRHS, A, LDA, B, LDB, INFO)
ZPOSV computes the solution to system of linear equations A * X = B for PO matrices ...
subroutine xerbla(SRNAME, INFO)
XERBLA
subroutine zpotrs(UPLO, N, NRHS, A, LDA, B, LDB, INFO)
ZPOTRS