You are here: Start » AVL.NET » Invoke.MakeHistogram
Creates a histogram out of an array of bin values.
| Namespace: | Avl | 
|---|---|
| Assembly: | AvlNet.dll | 
Syntax
C++
C#
public static void MakeHistogram ( List<double> inValues, float inDomainStart, float inBinSize, int inStartIndex, Optional<int> inBinCount, Avl.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 | Atl.Optional<int> | <1, +INF> | Number of bins in the resulting histogram. Default value: atl::NIL. | |
![]()  | outHistogram | Avl.Histogram | Output histogram. | 


