Gets a value indicating the order in which the matrix elements are stored.

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Overrides ReadOnly Property ElementOrder As MatrixElementOrder
C#
public override MatrixElementOrder ElementOrder { get; }
C++
public:
virtual MatrixElementOrder ElementOrder {
	MatrixElementOrder get () override;
}

Value

A MatrixElementOrder value.

Remarks

Matrix elements are stored in column major order by default. This means that the components of each column are stored in a contiguous area. Most algorithms are optimized for this storage order.

See Also