Find the correlation coefficient of values in the input. More...
Functions | |
template<typename T > | |
AFAPI T | corrcoef (const array &X, const array &Y) |
C++ Interface for correlation coefficient. More... | |
AFAPI af_err | af_corrcoef (double *realVal, double *imagVal, const af_array X, const af_array Y) |
C Interface for correlation coefficient. More... | |
Find the correlation coefficient of values in the input.
This function performs the operation across all dimensions of the input array.
C Interface for correlation coefficient.
[out] | realVal | will contain the real part of correlation coefficient of the inputs |
[out] | imagVal | will contain the imaginary part of correlation coefficient of the inputs |
[in] | X | is the first input array |
[in] | Y | is the second input array |
C++ Interface for correlation coefficient.
[in] | X | is the first input array |
[in] | Y | is the second input array |