f77_iamax Interface

public interface f77_iamax

Generic old style interface for IAMAX. Supports s, d, c, z. See also: mfi_iamax, isamax, idamax, icamax, izamax.


Functions

public pure function isamax(n, x, incx)

Original interface for ISAMAX See also: mfi_iamax, iamax.

Arguments

Type IntentOptional Attributes Name
integer, intent(in) :: n
real(kind=REAL32), intent(in) :: x(*)
integer, intent(in) :: incx

Return Value integer

public pure function idamax(n, x, incx)

Original interface for IDAMAX See also: mfi_iamax, iamax.

Arguments

Type IntentOptional Attributes Name
integer, intent(in) :: n
real(kind=REAL64), intent(in) :: x(*)
integer, intent(in) :: incx

Return Value integer

public pure function icamax(n, x, incx)

Original interface for ICAMAX See also: mfi_iamax, iamax.

Arguments

Type IntentOptional Attributes Name
integer, intent(in) :: n
complex(kind=REAL32), intent(in) :: x(*)
integer, intent(in) :: incx

Return Value integer

public pure function izamax(n, x, incx)

Original interface for IZAMAX See also: mfi_iamax, iamax.

Arguments

Type IntentOptional Attributes Name
integer, intent(in) :: n
complex(kind=REAL64), intent(in) :: x(*)
integer, intent(in) :: incx

Return Value integer