You are here: Start » AVL.NET » Function Reference » Histogram » Histogram Basics » AVL.GetHistogramBin

AVL.GetHistogramBin

Returns the value of a single histogram bin.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void GetHistogramBin
(
	AvlNet.Histogram inHistogram,
	int inIndex,
	bool inCyclic,
	bool inInverse,
	out double outValue,
	out float outBinStart,
	out float outBinEnd
)

Parameters

Name Type Range Default Description
inHistogramAvlNet.HistogramInput histogram.
inIndexintInput bin index.
inCyclicboolFalseWhether to wrap the index around or not. Default value: False.
inInverseboolReversed order of bins.
outValuedoubleOutput value of the bin.
outBinStartfloatLower limit of the bin.
outBinEndfloatUpper limit of the bin.

Errors

List of possible exceptions:

Error type Description
DomainError Incorrect index on input in GetHistogramBin.

Function Overrides

See also