You are here: Start » FIL.NET » FIS.MakeHistogram Method

FIS.MakeHistogram Method

Creates a histogram assuming given bin values.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

public static void MakeHistogram
(
	IList<int> inValues,
	float inDomainStart,
	float inDomainLength,
	float inBinSize,
	FilNet.Histogram outHistogram
)

Parameters

Name Type Range Default Description
inValuesSystem.Collections.Generic.IList<int>Input 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.
outHistogramFilNet.HistogramOutput histogram.

See also