127 SUBROUTINE cposv( UPLO, N, NRHS, A, LDA, B, LDB, INFO )
135 INTEGER INFO, LDA, LDB, N, NRHS
138 COMPLEX A( LDA, * ), B( LDB, * )
158 IF( .NOT.lsame( uplo,
'U' ) .AND.
159 $ .NOT.lsame( uplo,
'L' ) )
THEN
161 ELSE IF( n.LT.0 )
THEN
163 ELSE IF( nrhs.LT.0 )
THEN
165 ELSE IF( lda.LT.max( 1, n ) )
THEN
167 ELSE IF( ldb.LT.max( 1, n ) )
THEN
171 CALL xerbla(
'CPOSV ', -info )
177 CALL cpotrf( uplo, n, a, lda, info )
182 CALL cpotrs( uplo, n, nrhs, a, lda, b, ldb, info )
subroutine xerbla(srname, info)
subroutine cposv(uplo, n, nrhs, a, lda, b, ldb, info)
CPOSV computes the solution to system of linear equations A * X = B for PO matrices
subroutine cpotrf(uplo, n, a, lda, info)
CPOTRF
subroutine cpotrs(uplo, n, nrhs, a, lda, b, ldb, info)
CPOTRS