Represents an element in a DataArrayBase.
Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Class DataArrayElement _ Implements IEquatable(Of DataArrayElement) |
| C# |
|---|
public class DataArrayElement : IEquatable<DataArrayElement> |
| C++ |
|---|
public ref class DataArrayElement : IEquatable<DataArrayElement^> |
Methods
| Icon | Type | Description |
|---|---|---|
| Equality(DataArrayElement, DataArrayElement) |
Compares two histogram bins for equality.
| |
| Equals(Object) |
Determines whether two DataArrayElement
instances are equal.
| |
| Equals(DataArrayElement) |
Determines whether two DataArrayElement
instances are equal.
| |
| Finalize() | ||
| GetHashCode() |
Serves as a hash function for DataArrayElement, suitable
for use in hashing algorithms and data structures like
a hash table.
| |
| GetType() | Gets the Type of the current instance. | |
| Inequality(DataArrayElement, DataArrayElement) |
Compares two histogram bins for inequality.
| |
| MemberwiseClone() | Creates a shallow copy of the current Object. | |
| ToString() |
Constructors
| Icon | Type | Description |
|---|---|---|
| DataArrayElementNew(DataArrayBase, Int32) |
Constructs a new DataArrayElement.
|
Properties
| Icon | Type | Description |
|---|---|---|
| Index |
Gets the linearized index of the DataArrayElement.
| |
| Parent |
Gets the DataArrayBase that is the parent of this DataArrayElement.
| |
| Value |
Gets the value associated with the element.
|
Remarks
Use the DataArrayElement as the base class for classes
that represent elements of a DataArrayBase.
DataArrayElement is an abstract base class and cannot be instantiated directly. The following classes inherit from DataArrayElement:
ClassDescriptionCellRepresents a cell of an ANOVA design.HistogramBinRepresents a bin one-dimensional histogram.