|
Round to integer less than equal to current value. More...
Functions | |
AFAPI array | floor (const array &in) |
C++ Interface for flooring an array of numbers. More... | |
AFAPI af_err | af_floor (af_array *out, const af_array in) |
C Interface for flooring an array of numbers. More... | |
AFAPI af_err | af_hypot (af_array *out, const af_array lhs, const af_array rhs, const bool batch) |
C Interface for getting length of hypotenuse of two arrays. More... | |
Round to integer less than equal to current value.
C Interface for flooring an array of numbers.
[out] | out | will contain values rounded to nearest integer less than or equal to in |
[in] | in | is input array |
C Interface for getting length of hypotenuse of two arrays.
[out] | out | will contain the length of the hypotenuse |
[in] | lhs | is the length of first side |
[in] | rhs | is the length of second side |
[in] | batch | specifies if operations need to be performed in batch mode |
C++ Interface for flooring an array of numbers.
[in] | in | is input array |