Apply a function to a sliding window.
تختلف عن مرجع .wl: `MovingMap[Mean, …]` stays exact
MovingMap[f, tes, wspec]
MovingMap[f, tes, wspec, padding]
MovingMap[{ncomp1 -> f1, ncomp2 -> f2, …}, tes, …]
MovingMap[Mean, {1., 2., 3., 4., 5.}, 3]
→ {2.5, 3.5}MovingMap[(#[[1]]*#[[2]]) &, {1, 2, 3, 4}, 1]
→ {2, 6, 12}MovingMap[Identity, {1, 2, 3}, 1, "Fixed"]
→ {{1, 1}, {1, 2}, {2, 3}}MovingMap[Total, {1, 2, 3, 4, 5}, 1, 0]
→ {1, 3, 5, 7, 9}