Matrix.mul

Matrix multiplication.

struct Matrix(size_t ROWS, size_t COLS, E = float)
ref return scope
typeof(this)
mul
(
size_t N
E1
E2
)
(
auto ref const(Matrix!(ROWS, N, E1)) lhs
,
auto ref const(Matrix!(N, COLS, E2)) rhs
)

Parameters

lhs const(Matrix!(ROWS, N, E1))

left hand side matrix.

rhs const(Matrix!(N, COLS, E2))

right hand side matrix.

Return Value

Type: typeof(this)

calculated this matrix.

Meta