GetHistogramBin


Returns the value of a single histogram bin.

Syntax

C++
C#
Python
 
def GetHistogramBin(
	inHistogram: Histogram,
	inIndex: int,
	/,
	*,
	inCyclic: bool = False,
	inInverse: bool = False
)
-> (
	outValue: float,
	outBinStart: float,
	outBinEnd: float
)

Parameters

Name Type Default Description
Input value inHistogram Histogram Input histogram
Input value inIndex int Input bin index
Input value inCyclic bool False Whether to wrap the index around or not
Input value inInverse bool False Reversed order of bins
Output value outValue float Output value of the bin
Output value outBinStart float Lower limit of the bin
Output value outBinEnd float Upper limit of the bin