f77_potri Interface

public interface f77_potri

Generic old style interface for POTRI. Supports s, d, c, z. See also: mfi_potri, spotri, dpotri, cpotri, zpotri.


Subroutines

public pure subroutine spotri(uplo, n, a, lda, info)

Original interface for SPOTRI See also: mfi_potri, f77_potri.

Arguments

Type IntentOptional Attributes Name
character(len=1), intent(in) :: uplo
integer, intent(in) :: n
real(kind=REAL32), intent(in) :: a(lda,*)
integer, intent(in) :: lda
integer, intent(out) :: info

public pure subroutine dpotri(uplo, n, a, lda, info)

Original interface for DPOTRI See also: mfi_potri, f77_potri.

Arguments

Type IntentOptional Attributes Name
character(len=1), intent(in) :: uplo
integer, intent(in) :: n
real(kind=REAL64), intent(in) :: a(lda,*)
integer, intent(in) :: lda
integer, intent(out) :: info

public pure subroutine cpotri(uplo, n, a, lda, info)

Original interface for CPOTRI See also: mfi_potri, f77_potri.

Arguments

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

public pure subroutine zpotri(uplo, n, a, lda, info)

Original interface for ZPOTRI See also: mfi_potri, f77_potri.

Arguments

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