Back to Adaptive Vision Library website

You are here: Start » Function Reference » Histogram Data Statistics » HistogramDataNthValue

HistogramDataNthValue


Header:AVL.h
Namespace:avl

Computes nth smallest (or largest) value of the histogrammed numeric data.

Syntax

C++
C#
 
void avl::HistogramDataNthValue
(
	const avl::Histogram& inHistogram,
	const int inN,
	const avl::SortingOrder::Type inSortingOrder,
	float& outNthValue
)

Parameters

Name Type Default Description
inHistogram const Histogram& Input histogram
inN const int
inSortingOrder const SortingOrder::Type
outNthValue float& Nth smallest (or largest) value of the histogrammed data

Errors

List of possible exceptions:

Error type Description
DomainError Input histogram contains negative bins in HistogramDataNthValue.
DomainError Selected N exceeds index range in HistogramDataNthValue.