Loading [MathJax]/extensions/tex2jax.js

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

FIS.CreateHistogram Method

Creates the histogram of the array of real numbers.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

public static void CreateHistogram
(
	IList<float> inArray,
	NullableRef<IList<int>> inWeights,
	float inBinSize,
	float? inDomainStart,
	float? inDomainLength,
	FilNet.Histogram outHistogram
)

Parameters

Name Type Range Default Description
inArraySystem.Collections.Generic.IList<float>Array from which histogram will be generated.
inWeightsFilNet.NullableRef<System.Collections.Generic.IList<int>>Weights corresponding to the elements of 'inArray'. Default value: ftl::NIL.
inBinSizefloat<0.0001f, INF>1.0fInput bin size. Default value: 1.0f.
inDomainStartfloat?Input domain begin. Default value: ftl::NIL.
inDomainLengthfloat?<0.0001f, INF>Input domain length. Default value: ftl::NIL.
outHistogramFilNet.HistogramOutput histogram.

Function Overrides

See also