RowColumnValueTriplet<T> Structure

Represents the value of a component at a specified position in a matrix.

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public struct RowColumnValueTriplet<T>
Inheritance
Object  →  ValueType  →  RowColumnValueTriplet<T>

Type Parameters

T

Remarks

Use the RowColumnValueTriplet<T> type as the element type when enumerating the components of a Matrix<T>. The collections returned by NonzeroElements have elements of this type.

Methods

EqualsIndicates whether this instance and a specified object are equal.
(Inherited from ValueType)
GetHashCodeReturns the hash code for this instance.
(Inherited from ValueType)
GetTypeGets the Type of the current instance.
(Inherited from Object)
ToStringReturns the fully qualified type name of this instance.
(Inherited from ValueType)

Fields

Column The column of the component.
Row The row of the component.
Value The value of the component.

See Also