Matrix.opBinary

Matrix add and substraction.

  1. Matrix opBinary(T factor)
  2. column_t opBinary(row_t x)
  3. auto opBinary(U x)
  4. Matrix opBinary(U other)
    struct Matrix(T, int R, int C)
    @nogc pure const nothrow
    opBinary
    (
    string op
    U
    )
    ()
    if (
    is(U : Matrix) &&
    (
    op == "+" ||
    op == "-"
    )
    )

Meta