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
- **N**: `[in] CBLAS_INT` number of indexed elements.
253
+
- **correction**: `[in] double` 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 [variance][variance] according to `N-c` where `c` corresponds to the provided degrees of freedom adjustment. When computing the [variance][variance] of a population, setting this parameter to `0` is the standard choice (i.e., the provided array contains data constituting an entire population). When computing the unbiased sample [variance][variance], setting this parameter to `1` is the standard choice (i.e., the provided array contains data sampled from a larger population; this is commonly referred to as Bessel's correction).
254
+
- **X**: `[in] double*` input array.
255
+
- **strideX**: `[in] CBLAS_INT` stride length for `X`.
256
+
- **Out**: `[out] double*` output array.
257
+
- **strideOut**: `[in] CBLAS_INT` stride length for `Out`.
Computes the [mean][arithmetic-mean] and [variance][variance] of a double-precision floating-point strided array using a two-pass algorithm and alternative indexing semantics.
- **N**: `[in] CBLAS_INT` number of indexed elements.
277
+
- **correction**: `[in] double` 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 [variance][variance] according to `N-c` where `c` corresponds to the provided degrees of freedom adjustment. When computing the [variance][variance] of a population, setting this parameter to `0` is the standard choice (i.e., the provided array contains data constituting an entire population). When computing the unbiased sample [variance][variance], setting this parameter to `1` is the standard choice (i.e., the provided array contains data sampled from a larger population; this is commonly referred to as Bessel's correction).
278
+
- **X**: `[in] double*` input array.
279
+
- **strideX**: `[in] CBLAS_INT` stride length for `X`.
280
+
- **offsetX**: `[in] CBLAS_INT` starting index for `X`.
281
+
- **Out**: `[out] double*` output array.
282
+
- **strideOut**: `[in] CBLAS_INT` stride length for `Out`.
283
+
- **offsetOut**: `[in] CBLAS_INT` starting index for `Out`.
0 commit comments