Matrix Element Order 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#
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public enum MatrixElementOrder
Remarks
This enumeration corresponds to the CBLAS.ORDER enum in the CBLAS interface definition.
Members
NotApplicable | 0 | The ElementOrder property is meaningless for the type of matrix. |
RowMajor | 101 | The elements are stored in row major order. Elements in the same row are stored in one contiguous block. |
ColumnMajor | 102 | The elements are stored in column major order. Elements in the same column are stored in one contiguous block. |