You are here: Start » FIL.NET » Invoke.MakeHistogram

Invoke.MakeHistogram

Creates a histogram out of an array of bin values.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void MakeHistogram
(
	List<double> inValues,
	float inDomainStart,
	float inBinSize,
	int inStartIndex,
	Optional<int> inBinCount,
	Fil.Histogram outHistogram
)

Parameters

Name Type Range Default Description
inValuesSystem.Collections.Generic.List<double>Input array of bin values.
inDomainStartfloat0.0fInput domain begin. Default value: 0.0f.
inBinSizefloat<0.0f, INF>1.0fInput length of the domain range covered by a single bin. Default value: 1.0f.
inStartIndexint<0, +INF>0Index of the first bin in the values array. Default value: 0.
inBinCountFtl.Optional<int><1, +INF>Number of bins in the resulting histogram. Default value: ftl::NIL.
outHistogramFil.HistogramOutput histogram.

See also