[][src]Function arrayfire::cov

pub fn cov<T>(
    x: &Array<T>,
    y: &Array<T>,
    isbiased: bool
) -> Array<T::MeanOutType> where
    T: HasAfEnum + CovarianceComputable,
    T::MeanOutType: HasAfEnum

Compute covariance of two Arrays

Parameters

  • x is the first Array
  • y is the second Array
  • isbiased is boolean denoting if biased estimate should be taken(default: False)

Return Values

An Array with Covariance values