Enum MatrixLayout
Specifies how to store the elements of a multi-channel array or matrix in sequential memory.
public enum MatrixLayoutFields
- RowMajor = 0
- The elements in each row of the matrix will be contiguous in memory. 
- ColumnMajor = 1
- The elements in each column of the matrix will be contiguous in memory.