Table of Contents

Enum MatrixLayout

Namespace
Bonsai.Dsp
Assembly
Bonsai.Dsp.dll

Specifies how to store the elements of a multi-channel array or matrix in sequential memory.

public enum MatrixLayout

Fields

ColumnMajor = 1

The elements in each column of the matrix will be contiguous in memory.

RowMajor = 0

The elements in each row of the matrix will be contiguous in memory.