CreateHistogram
Creates the histogram of the array of real numbers.
Syntax
C++
C#
Python
def CreateHistogram( inArray: list[float], outHistogram: Histogram, /, *, inWeights: list[float] | None = None, inDomainStart: float | None = None, inBinSize: float = 1.0, inBinCount: int | None = None, inCyclic: bool = False ) -> None
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]() |
inArray | list[float] | Array from which histogram will be generated | ||
![]() |
inWeights | list[float] | None | None | Weights corresponding to the elements of 'inArray' | |
![]() |
inDomainStart | float | None | None | Input domain begin | |
![]() |
inBinSize | float | 0.0001 - ![]() |
1.0 | Input bin size |
![]() |
inBinCount | int | None | 0 - +![]() |
None | Input domain length |
![]() |
inCyclic | bool | False | Determines if input data is cyclic | |
![]() |
outHistogram | Histogram | Output histogram |



