Linear |
public class LinearBinning : IBinning, ICloneable
The LinearBinning type exposes the following members.
| Name | Description | |
|---|---|---|
| LinearBinning | Initializes a new instance of the LinearBinning class. |
| Name | Description | |
|---|---|---|
| BinOffset | Gets or sets the bin offset. This is the position of one bin. The positions of all other bins are calculated relative to this reference position by using integer multiples of the bin width. | |
| Bins | Gets the list of bins. | |
| BinWidth | Gets or sets the width of the bins. | |
| IsUserDefinedBinOffset | Gets or sets a value indicating whether the bin offset is user defined. | |
| IsUserDefinedBinWidth | Gets or sets a value indicating whether the bin width was defined by the user. | |
| NumberOfBins | Gets the number of bins. |
| Name | Description | |
|---|---|---|
| CalculateBinPositionsFromSortedList | Calculates the bin positions, the bin widths, and the number of bins from a sorted list containing the data ensemble. This does not calculate the bins themselves. To do this, use CalculateBinsFromSortedList(IReadOnlyListDouble). | |
| CalculateBinsFromSortedList | Calculates the bins from a sorted list containing the data ensemble. | |
| Clone | Creates a new object that is a copy of the current instance. | |
| Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) | |
| Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object) | |
| GetHashCode | Serves as the default hash function. (Inherited from Object) | |
| GetType | Gets the Type of the current instance. (Inherited from Object) | |
| MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object) | |
| ToString | Returns a string that represents the current object. (Inherited from Object) |
| Name | Description | |
|---|---|---|
| _binCounts | The number of items in each bin. | |
| _binLowerIndex | The lower index of the first populated bin. | |
| _binOffset | The bin offset. | |
| _binWidth | The bin width. | |
| _ensembleDataCount | The total number of data items in the ensemble. | |
| _numberOfBins | The number of bins. |