You are here: Start » AVL.NET » AVL.MakeHistogram Method

AVL.MakeHistogram Method

Creates a histogram assuming given bin values.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

public static void MakeHistogram(
	int[] inValues,
	float inDomainStart,
	float inDomainLength,
	float inBinSize,
	out AvlNet.Histogram outHistogram
)

Parameters

Name Type Range Default Description
inValuesintInput array of bin values.
inDomainStartfloat0.0fInput domain begin. Default value: 0.0f.
inDomainLengthfloat<0.0f, INF>256.0fInput domain length. Default value: 256.0f.
inBinSizefloat<0.0f, INF>1.0fInput length of the domain range covered by a single bin. Default value: 1.0f.
outHistogramAvlNet.HistogramOutput histogram.

Remarks

The calculated bin count must be equal to element count of the inValues array.

Errors

Error type Description
DomainError Empty inValues array on input in MakeHistogram.
DomainError Non-positive value of inBinSize in MakeHistogram.
DomainError The calculated bins count is greater than input values count in inValues.
DomainError The calculated bins count is less than input values count in inValues.

See also