Find the mean of values in the input. More...
Functions | |
AFAPI array | mean (const array &in, const dim_t dim=-1) |
C++ Interface for mean. More... | |
AFAPI array | mean (const array &in, const array &weights, const dim_t dim=-1) |
C++ Interface for mean of weighted inputs. More... | |
template<typename T > | |
AFAPI T | mean (const array &in) |
C++ Interface for mean of all elements. More... | |
template<typename T > | |
AFAPI T | mean (const array &in, const array &weights) |
C++ Interface for mean of all elements in weighted input. More... | |
AFAPI af_err | af_mean (af_array *out, const af_array in, const dim_t dim) |
C Interface for mean. More... | |
AFAPI af_err | af_mean_weighted (af_array *out, const af_array in, const af_array weights, const dim_t dim) |
C Interface for mean of weighted input array. More... | |
AFAPI af_err | af_mean_all (double *real, double *imag, const af_array in) |
C Interface for mean of all elements. More... | |
AFAPI af_err | af_mean_all_weighted (double *real, double *imag, const af_array in, const af_array weights) |
C Interface for mean of all elements in weighted input. More... | |
Find the mean of values in the input.
This function performs the operation across all dimensions of the input array.
C Interface for mean.
[out] | out | will contain the mean of the input array along dimension dim |
[in] | in | is the input array |
[in] | dim | the dimension along which the mean is extracted |
C Interface for mean of all elements.
[out] | real | will contain the real part of mean of the entire input array |
[out] | imag | will contain the imaginary part of mean of the entire input array |
[in] | in | is the input array |
AFAPI af_err af_mean_all_weighted | ( | double * | real, |
double * | imag, | ||
const af_array | in, | ||
const af_array | weights | ||
) |
C Interface for mean of all elements in weighted input.
[out] | real | will contain the real part of mean of the entire weighted input array |
[out] | imag | will contain the imaginary part of mean of the entire weighted input array |
[in] | in | is the input array |
[in] | weights | is used to scale input in before getting mean |
AFAPI af_err af_mean_weighted | ( | af_array * | out, |
const af_array | in, | ||
const af_array | weights, | ||
const dim_t | dim | ||
) |
C Interface for mean of weighted input array.
[out] | out | will contain the mean of the input array along dimension dim |
[in] | in | is the input array |
[in] | weights | is used to scale input in before getting mean |
[in] | dim | the dimension along which the mean is extracted |
C++ Interface for mean of all elements.
[in] | in | is the input array |
C++ Interface for mean of all elements in weighted input.
[in] | in | is the input array |
[in] | weights | is used to scale input in before getting mean |
C++ Interface for mean of weighted inputs.
[in] | in | is the input array |
[in] | weights | is used to scale input in before getting mean |
[in] | dim | the dimension along which the mean is extracted |
dim
dim
is -1 by default. -1 denotes the first non-singleton dimension. C++ Interface for mean.
[in] | in | is the input array |
[in] | dim | the dimension along which the mean is extracted |
dim
dim
is -1 by default. -1 denotes the first non-singleton dimension.