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

IconTypeDescription
static memberEquality(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()
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
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.
static memberInequality(DataArrayElement, DataArrayElement)
Compares two histogram bins for inequality.
MemberwiseClone()
Creates a shallow copy of the current Object.
ToString()
Returns a String that represents the current Object.

Constructors

IconTypeDescription
DataArrayElementNew(DataArrayBase, Int32)
Constructs a new DataArrayElement.

Properties

IconTypeDescription
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.

Inheritance Hierarchy

System.Object
  Extreme.Statistics.DataArrayElement