My Project

Functions

AFAPI af_err af_rem (af_array *out, const af_array lhs, const af_array rhs, const bool batch)
 C Interface for remainder. More...
 
AFAPI array rem (const array &lhs, const array &rhs)
 
AFAPI array rem (const array &lhs, const double rhs)
 
AFAPI array rem (const double lhs, const array &rhs)
 

Detailed Description

Remainder operation

Note
This function supports real inputs only. Complex inputs are not yet supported.

Function Documentation

◆ af_rem()

AFAPI af_err af_rem ( af_array out,
const af_array  lhs,
const af_array  rhs,
const bool  batch 
)

C Interface for remainder.

Parameters
[out]outwill contain the remainder of lhs divided by rhs
[in]lhsis numerator
[in]rhsis denominator
[in]batchspecifies if operations need to be performed in batch mode
Returns
AF_SUCCESS if the execution completes properly

◆ rem() [1/3]

AFAPI array af::rem ( const array lhs,
const array rhs 
)

C++ Interface for remainder when array divides array, scalar divides array or array divides scalar

Parameters
[in]lhsis numerator
[in]rhsis denominator
Returns
remainder when rhs divides lhs

◆ rem() [2/3]

AFAPI array af::rem ( const array lhs,
const double  rhs 
)

C++ Interface for remainder when array divides array, scalar divides array or array divides scalar

Parameters
[in]lhsis numerator
[in]rhsis denominator
Returns
remainder when rhs divides lhs

◆ rem() [3/3]

AFAPI array af::rem ( const double  lhs,
const array rhs 
)

C++ Interface for remainder when array divides array, scalar divides array or array divides scalar

Parameters
[in]lhsis numerator
[in]rhsis denominator
Returns
remainder when rhs divides lhs