mfi_trsv Interface

public interface mfi_trsv

Generic modern interface for TRSV. Supports s, d, c, z. See also: strsv, dtrsv, ctrsv, ztrsv.


Module Procedures

public pure subroutine mfi_strsv(a, x, uplo, trans, diag, incx)

Modern interface for strsv. See also: mfi_trsv, f77_trsv.

Arguments

Type IntentOptional Attributes Name
real(kind=REAL32), intent(in) :: a(:,:)
real(kind=REAL32), intent(inout) :: x(:)
character(len=1), intent(in), optional :: uplo
character(len=1), intent(in), optional :: trans
character(len=1), intent(in), optional :: diag
integer, intent(in), optional :: incx

public pure subroutine mfi_dtrsv(a, x, uplo, trans, diag, incx)

Modern interface for dtrsv. See also: mfi_trsv, f77_trsv.

Arguments

Type IntentOptional Attributes Name
real(kind=REAL64), intent(in) :: a(:,:)
real(kind=REAL64), intent(inout) :: x(:)
character(len=1), intent(in), optional :: uplo
character(len=1), intent(in), optional :: trans
character(len=1), intent(in), optional :: diag
integer, intent(in), optional :: incx

public pure subroutine mfi_ctrsv(a, x, uplo, trans, diag, incx)

Modern interface for ctrsv. See also: mfi_trsv, f77_trsv.

Arguments

Type IntentOptional Attributes Name
complex(kind=REAL32), intent(in) :: a(:,:)
complex(kind=REAL32), intent(inout) :: x(:)
character(len=1), intent(in), optional :: uplo
character(len=1), intent(in), optional :: trans
character(len=1), intent(in), optional :: diag
integer, intent(in), optional :: incx

public pure subroutine mfi_ztrsv(a, x, uplo, trans, diag, incx)

Modern interface for ztrsv. See also: mfi_trsv, f77_trsv.

Arguments

Type IntentOptional Attributes Name
complex(kind=REAL64), intent(in) :: a(:,:)
complex(kind=REAL64), intent(inout) :: x(:)
character(len=1), intent(in), optional :: uplo
character(len=1), intent(in), optional :: trans
character(len=1), intent(in), optional :: diag
integer, intent(in), optional :: incx