Matrix.opBinary

Matrix-vector multiplication

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

Meta