Skip to content

Commit fefb9f8

Browse files
committed
Fix description
1 parent 4f20f91 commit fefb9f8

File tree

1 file changed

+9
-8
lines changed
  • lib/node_modules/@stdlib/stats/incr/mminmax/docs

1 file changed

+9
-8
lines changed

lib/node_modules/@stdlib/stats/incr/mminmax/docs/repl.txt

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11

22
{{alias}}( [out,] window )
3-
Returns an accumulator function which incrementally computes a moving range.
3+
Returns an accumulator function which incrementally computes a moving
4+
minimum and maximum.
45

56
The `window` parameter defines the number of values over which to compute
6-
the moving range.
7+
the moving minimum and maximum.
78

89
If provided a value, the accumulator function returns an updated moving
9-
range. If not provided a value, the accumulator function returns the current
10-
moving range.
10+
minimum and maximum. If not provided a value, the accumulator function
11+
returns the current moving minimum and maximum.
1112

12-
The first `W-1` returned ranges will have less statistical support than
13-
subsequent ranges, as `W` values are needed to fill the window buffer. Until
14-
the window is full, the returned range equals the range of all provided
15-
values.
13+
The first `W-1` returned values will have less statistical support than
14+
subsequent values, as `W` values are needed to fill the window buffer. Until
15+
the window is full, the returned minimum and maximum equal the minimum and
16+
maximum of all provided values.
1617

1718
Parameters
1819
----------

0 commit comments

Comments
 (0)