Returns a histogram of a vector using the specified bin arrangement.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Histogram<T> CreateEmpty<T>(
Index<T> bins
)
where T : Object, IComparable<T>
Public Shared Function CreateEmpty(Of T As {Object, IComparable(Of T)}) (
bins As Index(Of T)
) As Histogram(Of T)
public:
generic<typename T>
where T : Object, IComparable<T>
static Histogram<T>^ CreateEmpty(
Index<T>^ bins
)
static member CreateEmpty :
bins : Index<'T> -> Histogram<'T> when 'T : Object and IComparable<'T>
Parameters
- bins
- Type: Extreme.DataAnalysisIndexT
An interval index that specifies the bin boundaries.
Type Parameters
- T
- The type of the values.
Return Value
Type:
HistogramTAn empty histogram with bins defined by
bins.
Reference