mfi_potrs Interface

public interface mfi_potrs

Generic modern interface for POTRS. Supports s, d, c, z. See also: spotrs, dpotrs, cpotrs, zpotrs.


Module Procedures

public pure subroutine mfi_spotrs(a, b, uplo, info)

Modern interface for spotrs. See also: mfi_potrs, f77_potrs.

Arguments

Type IntentOptional Attributes Name
real(kind=REAL32), intent(in) :: a(:,:)
real(kind=REAL32), intent(inout) :: b(:,:)
character(len=1), intent(in), optional :: uplo
integer, intent(out), optional :: info

public pure subroutine mfi_dpotrs(a, b, uplo, info)

Modern interface for dpotrs. See also: mfi_potrs, f77_potrs.

Arguments

Type IntentOptional Attributes Name
real(kind=REAL64), intent(in) :: a(:,:)
real(kind=REAL64), intent(inout) :: b(:,:)
character(len=1), intent(in), optional :: uplo
integer, intent(out), optional :: info

public pure subroutine mfi_cpotrs(a, b, uplo, info)

Modern interface for cpotrs. See also: mfi_potrs, f77_potrs.

Arguments

Type IntentOptional Attributes Name
complex(kind=REAL32), intent(in) :: a(:,:)
complex(kind=REAL32), intent(inout) :: b(:,:)
character(len=1), intent(in), optional :: uplo
integer, intent(out), optional :: info

public pure subroutine mfi_zpotrs(a, b, uplo, info)

Modern interface for zpotrs. See also: mfi_potrs, f77_potrs.

Arguments

Type IntentOptional Attributes Name
complex(kind=REAL64), intent(in) :: a(:,:)
complex(kind=REAL64), intent(inout) :: b(:,:)
character(len=1), intent(in), optional :: uplo
integer, intent(out), optional :: info