f77_rotm Interface

public interface f77_rotm

Generic old style interface for ROTM. Supports s, d. See also: mfi_rotm, srotm, drotm.


Subroutines

public pure subroutine srotm(n, x, incx, y, incy, param)

Original interface for SROTM See also: mfi_rotm, f77_rotm.

Arguments

Type IntentOptional Attributes Name
integer, intent(in) :: n
real(kind=REAL32), intent(inout) :: x(*)
integer, intent(in) :: incx
real(kind=REAL32), intent(inout) :: y(*)
integer, intent(in) :: incy
real(kind=REAL32), intent(in) :: param(5)

public pure subroutine drotm(n, x, incx, y, incy, param)

Original interface for DROTM See also: mfi_rotm, f77_rotm.

Arguments

Type IntentOptional Attributes Name
integer, intent(in) :: n
real(kind=REAL64), intent(inout) :: x(*)
integer, intent(in) :: incx
real(kind=REAL64), intent(inout) :: y(*)
integer, intent(in) :: incy
real(kind=REAL64), intent(in) :: param(5)