You are here: Start » FIL.NET » FIS.FindDensityMaxima_FixedCount Method
FIS.FindDensityMaxima_FixedCount Method
Finds local density maxima in set of values by looking for the highest concentration of a fixed number of samples.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
public static void FindDensityMaxima_FixedCount ( IList<float> inValues, int inCount, bool inAllowOverlapping, FilNet.DataModeFunction inModeFunction, IList<float> outModes, IList<float> outSpreads )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inValues | System.Collections.Generic.IList<float> | Data points array. | ||
![]() | inCount | int | <2, INF> | 3 | Number of points in a single window. Default value: 3. |
![]() | inAllowOverlapping | bool | If true all local maxima will be returned otherwise for each group of ranges that overlap a single mode will be returned (the middle of the group). | ||
![]() | inModeFunction | FilNet.DataModeFunction | Mean | Method of calculating the center of a data mode. Default value: Mean. | |
![]() | outModes | System.Collections.Generic.IList<float> | Computed data modes. | ||
![]() | outSpreads | System.Collections.Generic.IList<float> | Spreads of windows that had a mode. |