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