Represents a collection of bins in a Histogram.
Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Structure HistogramBinCollection _ Implements IEnumerable |
| C# |
|---|
public struct HistogramBinCollection : IEnumerable |
| C++ |
|---|
public value class HistogramBinCollection : IEnumerable |
Methods
| Icon | Type | Description |
|---|---|---|
| Equals(Object) | Indicates whether this instance and a specified object are equal. | |
| Finalize() | ||
| GetEnumerator() |
Returns an IEnumerator that can be used to
enumerate the bins in this HistogramBinCollection.
| |
| GetHashCode() | Returns the hash code for this instance. | |
| GetType() | Gets the Type of the current instance. | |
| MemberwiseClone() | Creates a shallow copy of the current Object. | |
| ToString() | Returns the fully qualified type name of this instance. |
Properties
| Icon | Type | Description |
|---|---|---|
| Count |
Gets the number of bins in the histogram.
| |
| Item(Int32) |
Returns the HistogramBin corresponding
to the given index value.
|
Remarks
The Bins property returns an object of type HistogramBinCollection.
It provides access to the bins of the histogram.
HistogramBinCollection implements IEnumerable, which provides for an easy way to iterate through all the bins in the histogram.