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.
Namespace: Extreme.MathematicsAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
public enum MatrixElementOrder
Public Enumeration MatrixElementOrder
public enum class MatrixElementOrder
| Member name | Value | Description |
---|
| 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.
|
| NotApplicable | 0 |
The ElementOrder property is meaningless for the
type of matrix.
|
This enumeration corresponds to the CBLAS.ORDER enum
in the CBLAS interface definition.
Numerical Libraries
Supported in: 6.0, 5.x, 4.x
Reference