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