MatrixElementOrder Enumeration

Represents the possible values for the order in which elements of a matrix are stored. The matrix elements must be contiguous in the storage array in the direction specified by this value.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public enum MatrixElementOrder

Remarks

This enumeration corresponds to the CBLAS.ORDER enum in the CBLAS interface definition.

Members

NotApplicable0 The ElementOrder property is meaningless for the type of matrix.
RowMajor101 The elements are stored in row major order. Elements in the same row are stored in one contiguous block.
ColumnMajor102 The elements are stored in column major order. Elements in the same column are stored in one contiguous block.

See Also