Matrix.opBinary

matrix-vector multiplication

  1. auto opBinary(T s)
  2. auto opBinary(V vec)
    struct Matrix(type, int numCols, int numRows)
    nothrow @nogc pure nothrow @nogc pure nothrow @nogc @safe @safe pure nothrow const
    opBinary
    (
    string op : "*"
    V
    )
    (
    V vec
    )
    if (
    isVector!V &&
    V.dimension == cols
    )
    if (
    (numCols > 1) &&
    (numRows > 1)
    )
  3. Matrix opBinary(Matrix mat)
  4. Matrix opBinary(M mat)

Meta