Click or drag to resize

HistogramCreateExplicit Method

Constructs a histogram with explicit bucket boundaries.

Namespace: Altaxo.Calc.Statistics
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static Histogram CreateExplicit(
	double lowerBound,
	double upperBound,
	int count
)

Parameters

lowerBound  Double
The lower bound of the histogram.
upperBound  Double
The upper bound of the histogram.
count  Int32
The number of buckets to create.

Return Value

Histogram
A histogram instance with the specified bucket layout.
See Also