You are here: Start » FIL.NET » Invoke.CreateHistogram
Creates the histogram of the array of real numbers.
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void CreateHistogram ( List<float> inArray, Optional<List<double>> inWeights, Optional<float> inDomainStart, float inBinSize, Optional<int> inBinCount, bool inCyclic, Fil.Histogram outHistogram )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inArray | System.Collections.Generic.List<float> | Array from which histogram will be generated. | ||
![]() | inWeights | Ftl.Optional<System.Collections.Generic.List<double>> | Weights corresponding to the elements of 'inArray'. Default value: ftl::NIL. | ||
![]() | inDomainStart | Ftl.Optional<float> | Input domain begin. Default value: ftl::NIL. | ||
![]() | inBinSize | float | <0.0001f, INF> | 1.0f | Input bin size. Default value: 1.0f. |
![]() | inBinCount | Ftl.Optional<int> | <0, +INF> | Input domain length. Default value: ftl::NIL. | |
![]() | inCyclic | bool | False | Determines if input data is cyclic. Default value: False. | |
![]() | outHistogram | Fil.Histogram | Output histogram. |