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

AVL.FindDataMode_MeanShift

Finds the mode in a set of data values by iteratively computing its median.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void FindDataMode_MeanShift
(
	IList<float> inValues,
	int inIterationCount,
	float inSpread,
	out float outMode
)

Parameters

Name Type Range Default Description
inValuesSystem.Collections.Generic.IList<float>
inIterationCountint<0, 1000>1Default value: 1.
inSpreadfloat<0.0f, INF>2.0fDefault value: 2.0f.
outModefloat

See also