IMatrixInArray1DColumnMajorRepresentation<'TElement> Type

Designates that the matrix is represented as a linear array of values. The linear array is in column-major order, i.e. the first elements of the linear array belong to the first column of the matrix (i.e. the row values change more quickly). The index of the linear array is calculated as index = row + column*NumberOfRows. This representation is used for instance by Fortran, Julia, MATLAB, Octave, Scilab, GLSL and HLSL.

Instance members

Instance member Description

this.GetArray1DColumnMajor

Full Usage: this.GetArray1DColumnMajor

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

Gets the underlying linear array in column-major order.

Returns: 'TElement[]

Underlying linear array in column-major order.