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 | |
|---|---|---|---|---|---|
![]() |
inValue | float | Common value for all bins of the constructed histogram | ||
![]() |
inDomainStart | float | 0.0 | First value of the domain represented by the histogram | |
![]() |
inBinSize | float | 0.0 - ![]() |
1.0 | Length of the domain section represented by each bin |
![]() |
inBinCount | int | 1 - +![]() |
1 | Length of the domain represented by the histogram |
![]() |
outHistogram | Histogram | The resulting histogram |



