RollingWindowArrays

Documentation for RollingWindowArrays.

RollingWindowArrays.rollingMethod
rolling(x::AbstractArray, window_size::Int; center = false[, dims])

Create a rolling window view of array x with window size window_size. If center is true, the window is centered on each element, which is relevant for the axes of the resulting array. For multidimensional arrays, the dims argument is required and specifies the dimensions along which to apply the rolling window.

source