StorageOrder Enumeration

Specifies a linear ordering by which matrix entries are stored.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public enum StorageOrder

Members

RowMajor0 The order is by rows. Entries are ordered by their row index first, and entries laying on a given row are in turn ordered by their column index.
ColumnMajor102 The order is by columns. Entries are ordered by their column index first, and entries laying on a given column are in turn ordered by their row index.

See Also