Back to Aurora Vision Library website

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

HistogramDataNthValue


Header: AVL.h
Namespace: avl
Module: FoundationBasic

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

Syntax

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

Parameters

Name Type Default Description
Input value inHistogram const Histogram& Input histogram
Input value inN const double
Input value inSortingOrder const SortingOrder::Type
Output value 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.