mfi_trmv Interface

public interface mfi_trmv

Generic modern interface for TRMV. Supports s, d, c, z. See also: strmv, dtrmv, ctrmv, ztrmv.


Module Procedures

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

Modern interface for strmv. See also: mfi_trmv, f77_trmv.

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_dtrmv(a, x, uplo, trans, diag, incx)

Modern interface for dtrmv. See also: mfi_trmv, f77_trmv.

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_ctrmv(a, x, uplo, trans, diag, incx)

Modern interface for ctrmv. See also: mfi_trmv, f77_trmv.

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_ztrmv(a, x, uplo, trans, diag, incx)

Modern interface for ztrmv. See also: mfi_trmv, f77_trmv.

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