windowed In Place
Returns a WindowedIntList with the given windowSize sliding by step. Each window is a view into the original list.
Return
A WindowedIntList containing the windows.
Parameters
The desired size of each window. Must be greater than 0.
The step size between consecutive windows. Defaults to 1.
Whether to include partial windows at the end. Defaults to false.
Throws
if windowSize or step is less than or equal to 0.
Returns a WindowedLongList with the given windowSize sliding by step. Each window is a view into the original list.
Return
A WindowedLongList containing the windows.
Parameters
The desired size of each window. Must be greater than 0.
The step size between consecutive windows. Defaults to 1.
Whether to include partial windows at the end. Defaults to false.
Throws
if windowSize or step is less than or equal to 0.
Returns a WindowedFloatList with the given windowSize sliding by step. Each window is a view into the original list.
Return
A WindowedFloatList containing the windows.
Parameters
The desired size of each window. Must be greater than 0.
The step size between consecutive windows. Defaults to 1.
Whether to include partial windows at the end. Defaults to false.
Throws
if windowSize or step is less than or equal to 0.
Returns a WindowedDoubleList with the given windowSize sliding by step. Each window is a view into the original list.
Return
A WindowedDoubleList containing the windows.
Parameters
The desired size of each window. Must be greater than 0.
The step size between consecutive windows. Defaults to 1.
Whether to include partial windows at the end. Defaults to false.
Throws
if windowSize or step is less than or equal to 0.