IMatrixInArray1DRowMajorRepresentation<'TElement> Type

Designates that the matrix is represented as a linear array of values. The array is in row-major order, i.e. the first elements of the linear array belong to the first row of the matrix (the column values change more quickly). The index of the linear array is calculated as index = column + row*NumberOfColumns. This representation is used for instance by C, C++, Mathematica, Pascal and Python.

Instance members

Instance member Description

this.GetArray1DRowMajor

Full Usage: this.GetArray1DRowMajor

Returns: 'TElement[] Underlying linear array in row-major order.
Modifiers: abstract

Gets the underlying linear array in row-major order.

Returns: 'TElement[]

Underlying linear array in row-major order.