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

AVL.FindDataMode_FixedCount

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

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void FindDataMode_FixedCount
(
	IList<float> inValues,
	float? inMinValue,
	float? inMaxValue,
	int inCount,
	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.
outModefloat
outMiddlefloat
outSpreadfloat

Errors

List of possible exceptions:

Error type Description
DomainError Empty array in FindDataMode_FixedCount.

Function Overrides

See also