MinimumOnSlidingWindowTGetSlidingMinimum Method |
Gets the sliding minimum of an enumeration.
Namespace: Altaxo.Collections.OperationsAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static IEnumerable<T> GetSlidingMinimum(
IEnumerable<T> list,
int windowWidth
)
Parameters
- list IEnumerableT
- The enumeration to enumerate through
- windowWidth Int32
- Width of the sliding window.
Return Value
IEnumerableTAn enumeration. Each value is the minimum of the
windowWidth values (including the current one) of the original enumeration.
See Also