You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* - The function expects the following ndarrays in order:
284
280
*
285
-
* - first one-dimensional input ndarray.
286
-
* - second one-dimensional input ndarray.
287
-
* - a zero-dimensional ndarray specifying degrees of freedom adjustment. Setting this parameter to a value other than `0` has the effect of adjusting the divisor during the calculation of the covariance according to `N-c` where `c` corresponds to the provided degrees of freedom adjustment. When computing the population covariance, setting this parameter to `0` is the standard choice (i.e., the provided arrays contain data constituting entire populations). When computing the unbiased sample covariance, setting this parameter to `1` is the standard choice (i.e., the provided arrays contain data sampled from larger populations; this is commonly referred to as Bessel's correction).
288
-
* - a zero-dimensional ndarray specifying mean of the first one-dimensional ndarray.
289
-
* - a zero-dimensional ndarray specifying mean of the second one-dimensional ndarray.
281
+
* - a zero-dimensional ndarray specifying the degrees of freedom adjustment. Setting this parameter to a value other than `0` has the effect of adjusting the divisor during the calculation of the covariance according to `N-c` where `c` corresponds to the provided degrees of freedom adjustment and `N` corresponds to the number of elements in each input ndarray. When computing the population covariance, setting this parameter to `0` is the standard choice (i.e., the provided arrays contain data constituting entire populations). When computing the unbiased sample covariance, setting this parameter to `1` is the standard choice (i.e., the provided arrays contain data sampled from larger populations; this is commonly referred to as Bessel's correction).
282
+
* - a zero-dimensional ndarray specifying the mean of the first one-dimensional ndarray.
283
+
* - a zero-dimensional ndarray specifying the mean of the second one-dimensional ndarray.
0 commit comments