.NET Matrix Library
StorageOrder Enumeration
See Also  Send Feedback



Specifies how a one-dimensional array will be used to fill the elements of the constructed matrix.

Syntax

Visual Basic (Declaration) 
Public Enum StorageOrder 
   Inherits System.Enum
Visual Basic (Usage)Copy Code
Dim instance As StorageOrder
C# 
public enum StorageOrder : System.Enum 
C++/CLI 
public enum class StorageOrder : public System.Enum 

Members

MemberDescription
ColumnMajorFill matrix in column major order (column by column).
RowMajorFill matrix in row major order (row by row).

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows 7

See Also

.NET Matrix Library