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
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/dsmeanors/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -110,7 +110,7 @@ var v = dsmeanors.ndarray( x.length, x, 1, 0 );
110
110
111
111
The function has the following additional parameters:
112
112
113
-
-**offset**: starting index for `x`.
113
+
-**offsetX**: starting index for `x`.
114
114
115
115
While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying buffer, the offset parameter supports indexing semantics based on a starting index. For example, to calculate the [arithmetic mean][arithmetic-mean] for every other element in `x` starting from the second element
116
116
@@ -174,7 +174,7 @@ console.log( v );
174
174
175
175
#### stdlib_strided_dsmeanors( N, \*X, strideX )
176
176
177
-
Computes the arithmetic mean of a single-precision floating-point strided array `x`using ordinary recursive summation with extended accumulation and returning an extended precision result.
177
+
Computes the arithmetic mean of a single-precision floating-point strided array using ordinary recursive summation with extended accumulation and returning an extended precision result.
0 commit comments