DenseMatrix<T>.ElementOrder Property

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

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public override MatrixElementOrder ElementOrder { get; }

Property Value

MatrixElementOrder
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