You are here: Start » AVL.NET » Invoke.GetHistogramBin

Invoke.GetHistogramBin

Returns the value of a single histogram bin.

Namespace:Avl
Assembly:AvlNet.dll

Syntax

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

Parameters

Name Type Range Default Description
inHistogramAvl.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.
outBinStartAtl.Optional<float>Lower limit of the bin.
outBinEndAtl.Optional<float>Upper limit of the bin.

See also