Function cov
Source pub fn cov<T>(
x: &Array<T>,
y: &Array<T>,
isbiased: bool,
) -> Array<T::MeanOutType>
👎Deprecated since 3.8.0: Please use cov_v2 API
Expand description
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