[−][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,
👎 Deprecated since 3.8.0:
Please use cov_v2 API
Compute covariance of two Arrays
Parameters
x
is the first Arrayy
is the second Arrayisbiased
is boolean denoting if biased estimate should be taken(default: False)
Return Values
An Array with Covariance values