hetri Interface

public interface hetri

HETRI computes the inverse of a complex Hermitian indefinite matrix A using the factorization A = UDUH or A = LDLH computed by CHETRF.


Subroutines

public pure subroutine chetri(uplo, n, a, lda, ipiv, work, info)

Arguments

Type IntentOptional Attributes Name
character(len=1), intent(in) :: uplo
integer(kind=ilp), intent(in) :: n
complex(kind=sp), intent(inout) :: a(lda,*)
integer(kind=ilp), intent(in) :: lda
integer(kind=ilp), intent(in) :: ipiv(*)
complex(kind=sp), intent(out) :: work(*)
integer(kind=ilp), intent(out) :: info

public pure subroutine zhetri(uplo, n, a, lda, ipiv, work, info)

Arguments

Type IntentOptional Attributes Name
character(len=1), intent(in) :: uplo
integer(kind=ilp), intent(in) :: n
complex(kind=dp), intent(inout) :: a(lda,*)
integer(kind=ilp), intent(in) :: lda
integer(kind=ilp), intent(in) :: ipiv(*)
complex(kind=dp), intent(out) :: work(*)
integer(kind=ilp), intent(out) :: info

Module Procedures

public interface stdlib_chetri()

Arguments

None

public interface stdlib_zhetri()

Arguments

None