Matrix.fromRows

Initialize by row major elements.

struct Matrix(size_t ROWS, size_t COLS, E = float)
static
typeof(this)
fromRows
(
scope const(E)[COLS][ROWS] elements
)

Parameters

elements const(E)[COLS][ROWS]

matrix row major elements.

Return Value

Type: typeof(this)

initialized matrix.

Meta