Returns an empty histogram using the specified bin arrangement.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Histogram<int> CreateEmpty(
int lowerBound,
int upperBound
)
Public Shared Function CreateEmpty (
lowerBound As Integer,
upperBound As Integer
) As Histogram(Of Integer)
public:
static Histogram<int>^ CreateEmpty(
int lowerBound,
int upperBound
)
static member CreateEmpty :
lowerBound : int *
upperBound : int -> Histogram<int>
Parameters
- lowerBound
- Type: SystemInt32
The (inclusive) lower bound of the first histogram bin. - upperBound
- Type: SystemInt32
The (exclusive) upper bound of the last histogram bin.
Return Value
Type:
HistogramInt32An empty histogram containing bins labeled with values from
lowerBound (inclusive) to
upperBound (exclusive).
.
Reference