Back to Aurora Vision Library website

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

FindDataMode_FixedCount


Header: AVL.h
Namespace: avl
Module: FoundationPro

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

Applications: Can be used to determine a histogram maximum without actually creating the histogram.

Syntax

C++
C#
 
void avl::FindDataMode_FixedCount
(
	const atl::Array<float>& inValues,
	atl::Optional<float> inMinValue,
	atl::Optional<float> inMaxValue,
	int inCount,
	atl::Optional<float> inCycle,
	float& outMode,
	float& outMiddle,
	float& outSpread
)

Parameters

Name Type Range Default Description
Input value inValues const Array<float>&
Input value inMinValue Optional<float> NIL
Input value inMaxValue Optional<float> NIL
Input value inCount int 2 - 3
Input value inCycle Optional<float> NIL
Output value outMode float&
Output value outMiddle float&
Output value outSpread float&

Errors

List of possible exceptions:

Error type Description
DomainError Empty array in FindDataMode_FixedCount.