Click or drag to resize

MinimumOnSlidingWindowT Constructor

Initializes a new instance of the MinimumOnSlidingWindowT class.

Namespace: Altaxo.Collections.Operations
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public MinimumOnSlidingWindow(
	int numberOfItems,
	T startValue
)

Parameters

numberOfItems  Int32
The number of items N. The algorithm evaluates the minimum of the last N items that where added to this instance.
startValue  T
The start value. This is the first entry to add to the instance. Thus, the MinimumValue always return a valid value.
See Also