Histogram.Try Find Bin<T> Method
Tries to find the interval that contains the given value.
Definition
Namespace: Numerics.NET.DataAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
C#
true if the value was found; otherwise false.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
public static bool TryFindBin<T>(
this Histogram<Interval<T>> histogram,
T value,
out Interval<T> bin
)
where T : Object, IComparable<T>
Parameters
- histogram Histogram<Interval<T>>
- A histogram.
- value T
- The value to find.
- bin Interval<T>
- On return, the Interval<T> that contains value.
Type Parameters
- T
Return Value
Booleantrue if the value was found; otherwise false.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type Histogram<Interval<T>>. 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).Remarks
Use this method to find the Interval<T> that contains the specified value.