struct Matrix(type, int numCols, int numRows)
nothrow @nogc pure nothrow @nogc pure nothrow @nogc @safe @safe pure nothrow const
opBinary
if (
isNumeric!T &&
((op == "+") ||
(op == "-")
||
(op == "*")
||
(op == "/")
) )
if (
(numCols > 1) &&
(numRows > 1)
)
//////////// //////////// Component-wise binary matrix-scalar operation: addition, subtraction, multiplication, division