Click or drag to resize

MinimumOnSlidingWindowTGetSlidingMinimum Method

Gets the sliding minimum of an enumeration.

Namespace: Altaxo.Collections.Operations
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
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

IEnumerableT
An enumeration. Each value is the minimum of the windowWidth values (including the current one) of the original enumeration.
See Also