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 `N` and stride parameters determine which elements in `x` are accessed at runtime. For example, to compute the [arithmetic mean][arithmetic-mean] of every other element in `x`,
74
74
@@ -173,7 +173,7 @@ console.log( v );
173
173
174
174
#### stdlib_strided_dsmeanwd( N, \*X, strideX )
175
175
176
-
Computes the arithmetic mean of a single-precision floating-point strided array `x`using Welford's algorithm with extended accumulation and returning an extended precision result.
176
+
Computes the arithmetic mean of a single-precision floating-point strided array using Welford's algorithm with extended accumulation and returning an extended precision result.
#### stdlib_strided_dsmeanwd_ndarray( N, \*X, strideX, offsetX )
196
196
197
-
Computes the arithmetic mean of a single-precision floating-point strided array `x`using Welford's algorithm with extended accumulation and alternative indexing semantics and returning an extended precision result.
197
+
Computes the arithmetic mean of a single-precision floating-point strided array using Welford's algorithm with extended accumulation and alternative indexing semantics and returning an extended precision result.
0 commit comments