You are here: Start » FIL.NET » Invoke.MakeHistogram
Creates a histogram out of an array of bin values.
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void MakeHistogram ( List<double> inValues, float inDomainStart, float inBinSize, int inStartIndex, Optional<int> inBinCount, Fil.Histogram outHistogram )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inValues | System.Collections.Generic.List<double> | Input array of bin values. | ||
![]() | inDomainStart | float | 0.0f | Input domain begin. Default value: 0.0f. | |
![]() | inBinSize | float | <0.0f, INF> | 1.0f | Input length of the domain range covered by a single bin. Default value: 1.0f. |
![]() | inStartIndex | int | <0, +INF> | 0 | Index of the first bin in the values array. Default value: 0. |
![]() | inBinCount | Ftl.Optional<int> | <1, +INF> | Number of bins in the resulting histogram. Default value: ftl::NIL. | |
![]() | outHistogram | Fil.Histogram | Output histogram. |