Matrix.opBinaryRight

Component-wise binary scalar-matrix operation: addition, subtraction, multiplication, division

  1. auto opBinaryRight(T s)
    struct Matrix(type, int numCols, int numRows)
    nothrow @nogc pure nothrow @nogc pure nothrow @nogc @safe @safe pure nothrow const
    opBinaryRight
    (
    string op
    T
    )
    (
    T s
    )
    if (
    isNumeric!T &&
    (
    (op == "+") ||
    (op == "-")
    ||
    (op == "*")
    ||
    (op == "/")
    )
    )
    if (
    (numCols > 1) &&
    (numRows > 1)
    )
  2. auto opBinaryRight(V vec)

Meta