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/incr/mmean/README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -77,7 +77,7 @@ mu = accumulator();
77
77
78
78
## Notes
79
79
80
-
- Input values are **not** type checked. If provided `NaN` or a value which, when used in computations, results in `NaN`, the accumulated value is `NaN` for **all** future invocations. If non-numeric inputs are possible, you are advised to type check and handle accordingly **before** passing the value to the accumulator function.
80
+
- Input values are **not** type checked. If provided `NaN` or a value which, when used in computations, results in `NaN`, the accumulated value is `NaN` for **at least**`W-1` future invocations. If non-numeric inputs are possible, you are advised to type check and handle accordingly **before** passing the value to the accumulator function.
81
81
- The first `W-1` returned mean values will have less statistical support than subsequent mean values, as `W` values are needed to fill the window buffer. Until the window is full, the returned mean equals the [arithmetic mean][arithmetic-mean] of all provided values.
0 commit comments