Gets an array containing the bounds of the bins in a
Histogram.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static T[] GetBounds<T>(
this Histogram<Interval<T>> histogram
)
where T : Object, IComparable<T>
<ExtensionAttribute>
Public Shared Function GetBounds(Of T As {Object, IComparable(Of T)}) (
histogram As Histogram(Of Interval(Of T))
) As T()
public:
[ExtensionAttribute]
generic<typename T>
where T : Object, IComparable<T>
static array<T>^ GetBounds(
Histogram<Interval<T>>^ histogram
)
[<ExtensionAttribute>]
static member GetBounds :
histogram : Histogram<Interval<'T>> -> 'T[] when 'T : Object and IComparable<'T>
Parameters
- histogram
- Type: Extreme.DataAnalysisHistogramIntervalT
Type Parameters
- T
Return Value
Type:
TA
Double array.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
HistogramIntervalT. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
This method always returns a new array instance. It should not be used inside a loop.
Reference