statistics.h File Reference
#include <af/defines.h>

Go to the source code of this file.

Namespaces

 af
 

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...
 
AFAPI array var (const array &in, const bool isbiased=false, const dim_t dim=-1)
 C++ Interface for variance. More...
 
AFAPI array var (const array &in, const array &weights, const dim_t dim=-1)
 C++ Interface for variance of weighted inputs. More...
 
AFAPI array stdev (const array &in, const dim_t dim=-1)
 C++ Interface for standard deviation. More...
 
AFAPI array cov (const array &X, const array &Y, const bool isbiased=false)
 C++ Interface for covariance. More...
 
AFAPI array median (const array &in, const dim_t dim=-1)
 C++ Interface for median. More...
 
template<typename T >
AFAPImean (const array &in)
 C++ Interface for mean of all elements. More...
 
template<typename T >
AFAPImean (const array &in, const array &weights)
 C++ Interface for mean of all elements in weighted input. More...
 
template<typename T >
AFAPIvar (const array &in, const bool isbiased=false)
 C++ Interface for variance of all elements. More...
 
template<typename T >
AFAPIvar (const array &in, const array &weights)
 C++ Interface for variance of all elements in weighted input. More...
 
template<typename T >
AFAPIstdev (const array &in)
 C++ Interface for standard deviation of all elements. More...
 
template<typename T >
AFAPImedian (const array &in)
 C++ Interface for median of all elements. More...
 
template<typename T >
AFAPIcorrcoef (const array &X, const array &Y)
 C++ Interface for correlation coefficient. 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_var (af_array *out, const af_array in, const bool isbiased, const dim_t dim)
 C Interface for variance. More...
 
AFAPI af_err af_var_weighted (af_array *out, const af_array in, const af_array weights, const dim_t dim)
 C Interface for variance of weighted input array. More...
 
AFAPI af_err af_stdev (af_array *out, const af_array in, const dim_t dim)
 C Interface for standard deviation. More...
 
AFAPI af_err af_cov (af_array *out, const af_array X, const af_array Y, const bool isbiased)
 C Interface for covariance. More...
 
AFAPI af_err af_median (af_array *out, const af_array in, const dim_t dim)
 C Interface for median. 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...
 
AFAPI af_err af_var_all (double *realVal, double *imagVal, const af_array in, const bool isbiased)
 C Interface for variance of all elements. More...
 
AFAPI af_err af_var_all_weighted (double *realVal, double *imagVal, const af_array in, const af_array weights)
 C Interface for variance of all elements in weighted input. More...
 
AFAPI af_err af_stdev_all (double *real, double *imag, const af_array in)
 C Interface for standard deviation of all elements. More...
 
AFAPI af_err af_median_all (double *realVal, double *imagVal, const af_array in)
 C Interface for median. More...
 
AFAPI af_err af_corrcoef (double *realVal, double *imagVal, const af_array X, const af_array Y)
 C Interface for correlation coefficient. More...