Find the minimum values and their locations. More...
Functions | |
AFAPI array | min (const array &in, const int dim=-1) |
C++ Interface for minimum values in an array. | |
template<typename T > | |
T | min (const array &in) |
C++ Interface for getting minimum value of an array. | |
AFAPI void | min (array &val, array &idx, const array &in, const int dim=-1) |
C++ Interface for getting minimum values and their locations in an array. | |
template<typename T > | |
void | min (T *val, unsigned *idx, const array &in) |
C++ Interface for getting minimum value and its location from the entire array. | |
AFAPI af_err | af_min (af_array *out, const af_array in, const int dim) |
C Interface for minimum values in an array. | |
AFAPI af_err | af_min_all (double *real, double *imag, const af_array in) |
C Interface for getting minimum value of an array. | |
AFAPI af_err | af_imin (af_array *out, af_array *idx, const af_array in, const int dim) |
C Interface for getting minimum values and their locations in an array. | |
AFAPI af_err | af_imin_all (double *real, double *imag, unsigned *idx, const af_array in) |
C Interface for getting minimum value and its location from the entire array. | |
Find the minimum values and their locations.
This function performs the operation across all batches present in the input simultaneously.
C Interface for getting minimum values and their locations in an array.
[out] | out | will contain the minimum of all values in in along dim |
[out] | idx | will contain the location of minimum of all values in in along dim |
[in] | in | is the input array |
[in] | dim | The dimension along which the minimum value is extracted |
C Interface for getting minimum value and its location from the entire array.
[out] | real | will contain the real part of minimum value of all elements in input in |
[out] | imag | will contain the imaginary part of minimum value of all elements in input in |
[out] | idx | will contain the location of minimum of all values in in |
[in] | in | is the input array |
imag
is always set to 0 when in
is real. C Interface for minimum values in an array.
[out] | out | will contain the minimum of all values in in along dim |
[in] | in | is the input array |
[in] | dim | The dimension along which the minimum value is extracted |
C Interface for getting minimum value of an array.
[out] | real | will contain the real part of minimum value of all elements in input in |
[out] | imag | will contain the imaginary part of minimum value of all elements in input in |
[in] | in | is the input array |
imag
is always set to 0 when in
is real. C++ Interface for getting minimum values and their locations in an array.
[out] | val | will contain the minimum values along dimension dim |
[out] | idx | will contain the locations of minimum all values along dimension dim |
[in] | in | is the input array |
[in] | dim | The dimension along which the minimum value needs to be extracted |
dim
is -1 by default. -1 denotes the first non-singleton dimension.T min | ( | const array & | in | ) |
C++ Interface for getting minimum value of an array.
[in] | in | is the input array |
in
C++ Interface for minimum values in an array.
[in] | in | is the input array |
[in] | dim | The dimension along which the minimum value needs to be extracted |
dim
dim
is -1 by default. -1 denotes the first non-singleton dimension. void min | ( | T * | val, |
unsigned * | idx, | ||
const array & | in | ||
) |
C++ Interface for getting minimum value and its location from the entire array.
[out] | val | will contain the minimum values in the input |
[out] | idx | will contain the locations of minimum all values in the input |
[in] | in | is the input array |