f77_dotc Interface

public interface f77_dotc

Generic old style interface for DOTC. Supports c, z. See also: mfi_dotc, cdotc, zdotc.


Functions

public pure function cdotc(n, x, incx, y, incy)

Original interface for CDOTC See also: mfi_dotc, f77_dotc.

Arguments

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

Return Value complex(kind=REAL32)

public pure function zdotc(n, x, incx, y, incy)

Original interface for ZDOTC See also: mfi_dotc, f77_dotc.

Arguments

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

Return Value complex(kind=REAL64)