Calculates the moving mean of an array.
The array
The size of the moving window
const result = Chalkboard.stat.meanMoving([1, 2, 3, 4, 5], 3); // Returns [2, 3, 4] Copy
const result = Chalkboard.stat.meanMoving([1, 2, 3, 4, 5], 3); // Returns [2, 3, 4]
Calculates the moving mean of an array.