Click or drag to resize

LongestCommonSubstringBaseMinimumOnSlidingWindowInitialize Method

Initializes a new instance of the LongestCommonSubstringBaseMinimumOnSlidingWindow class.

Namespace: Altaxo.Collections.Text
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public void Initialize(
	int numberOfItems,
	int 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  Int32
The start value. This is the first entry to add to the instance. Thus, MinimumValue always return a valid value.
See Also