Mat.opBinary

Returns sum or sub of two matrices

  1. auto opBinary(float scalar)
  2. auto opBinary(Vec!(T, n) vector)
  3. auto opBinary(Mat!(T, n) other)
  4. auto opBinary(Mat!(T, n) other)
    struct Mat(T, ulong n)
    @nogc pure const nothrow
    opBinary
    (
    string s
    )
    (
    const Mat!(T, n) other
    )
    if (
    s == "+" ||
    s == "-"
    )
    if (
    n >= 2 &&
    isNumeric!T
    )

Meta