Find the standard deviation of values in the input. More...
Functions | |
| AFAPI array | stdev (const array &in, const dim_t dim=-1) |
| C++ Interface for standard deviation. | |
| AFAPI array | stdev (const array &in, const af_var_bias bias, const dim_t dim=-1) |
| C++ Interface for standard deviation. | |
| template<typename T> | |
| AFAPI T | stdev (const array &in) |
| C++ Interface for standard deviation of all elements. | |
| template<typename T> | |
| AFAPI T | stdev (const array &in, const af_var_bias bias) |
| C++ Interface for standard deviation of all elements. | |
| AFAPI af_err | af_stdev (af_array *out, const af_array in, const dim_t dim) |
| C Interface for standard deviation. | |
| AFAPI af_err | af_stdev_v2 (af_array *out, const af_array in, const af_var_bias bias, const dim_t dim) |
| C Interface for standard deviation. | |
| AFAPI af_err | af_stdev_all (double *real, double *imag, const af_array in) |
| C Interface for standard deviation of all elements. | |
| AFAPI af_err | af_stdev_all_v2 (double *real, double *imag, const af_array in, const af_var_bias bias) |
| C Interface for standard deviation of all elements. | |
Find the standard deviation of values in the input.
This function performs the operation across all dimensions of the input array.
C Interface for standard deviation.
| [out] | out | will contain the standard deviation of the input array along dimension dim |
| [in] | in | is the input array |
| [in] | dim | the dimension along which the standard deviation is extracted |
C Interface for standard deviation of all elements.
| [out] | real | will contain the real part of standard deviation of the entire input array |
| [out] | imag | will contain the imaginary part of standard deviation of the entire input array |
| [in] | in | is the input array |
| AFAPI af_err af_stdev_all_v2 | ( | double * | real, |
| double * | imag, | ||
| const af_array | in, | ||
| const af_var_bias | bias ) |
C Interface for standard deviation of all elements.
| [out] | real | will contain the real part of standard deviation of the entire input array |
| [out] | imag | will contain the imaginary part of standard deviation of the entire input array |
| [in] | in | is the input array |
| [in] | bias | The type of bias used for variance calculation. Takes of value of type af_var_bias |
| AFAPI af_err af_stdev_v2 | ( | af_array * | out, |
| const af_array | in, | ||
| const af_var_bias | bias, | ||
| const dim_t | dim ) |
C Interface for standard deviation.
| [out] | out | will contain the standard deviation of the input array along dimension dim |
| [in] | in | is the input array |
| [in] | bias | The type of bias used for variance calculation. Takes of value of type af_var_bias |
| [in] | dim | the dimension along which the standard deviation is extracted |
C++ Interface for standard deviation of all elements.
| [in] | in | is the input array |
| AFAPI T stdev | ( | const array & | in, |
| const af_var_bias | bias ) |
C++ Interface for standard deviation of all elements.
| [in] | in | is the input array |
| [in] | bias | The type of bias used for variance calculation. Takes of value of type af_var_bias. |
| AFAPI array stdev | ( | const array & | in, |
| const af_var_bias | bias, | ||
| const dim_t | dim = -1 ) |
C++ Interface for standard deviation.
| [in] | in | is the input array |
| [in] | bias | The type of bias used for variance calculation. Takes of value of type af_var_bias. |
| [in] | dim | the dimension along which the standard deviation is extracted |
dim dim is -1 by default. -1 denotes the first non-singleton dimension. C++ Interface for standard deviation.
| [in] | in | is the input array |
| [in] | dim | the dimension along which the standard deviation is extracted |
dim dim is -1 by default. -1 denotes the first non-singleton dimension.