Click or drag to resize
HistogramAddData Method (IEnumerableDouble)
Add a sequence of data point to the histogram. If the datapoint falls outside the range of the histogram, the lowerbound or upperbound will automatically adapt.

Namespace: MathNet.Numerics.Statistics
Assembly: MathNet.Numerics (in MathNet.Numerics.dll) Version: 3.7
Syntax
C#
public void AddData(
	IEnumerable<double> data
)

Parameters

data
Type: System.Collections.GenericIEnumerableDouble
The sequence of datapoints which we want to add.
See Also