You are here: Start » FIL.NET » Function Reference » Data Classification » Statistics » FIL.FindDataMode_FixedCount

FIL.FindDataMode_FixedCount

Finds the mode in a set of data values by looking for highest concentration of a fixed number of samples.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

C++
C#
 
public static void FindDataMode_FixedCount
(
	IList<float> inValues,
	float? inMinValue,
	float? inMaxValue,
	int inCount,
	float? inCycle,
	out float outMode,
	out float outMiddle,
	out float outSpread
)

Parameters

Name Type Range Default Description
inValuesSystem.Collections.Generic.IList<float>
inMinValuefloat?
inMaxValuefloat?
inCountint<2, INF>3Default value: 3.
inCyclefloat?
outModefloat
outMiddlefloat
outSpreadfloat

Errors

List of possible exceptions:

Error type Description
DomainError Empty array in FindDataMode_FixedCount.

Function Overrides

See also