CreateUniformHistogram


Creates a uniform histogram of desired parameters with common value of all bins.

Syntax

C++
C#
Python
 
def CreateUniformHistogram(
	inValue: float,
	outHistogram: Histogram,
	/,
	*,
	inDomainStart: float = 0.0,
	inBinSize: float = 1.0,
	inBinCount: int = 1
)
-> None

Parameters

Name Type Range Default Description
Input value inValue float Common value for all bins of the constructed histogram
Input value inDomainStart float 0.0 First value of the domain represented by the histogram
Input value inBinSize float 0.0 - 1.0 Length of the domain section represented by each bin
Input value inBinCount int 1 - + 1 Length of the domain represented by the histogram
Output value outHistogram Histogram The resulting histogram