Matrix.opBinary

Returns the result of Matrix multiplication.

  1. T[columnSize] opBinary(T[rowSize] vec)
  2. Matrix!(T, OtherColumns, columnSize) opBinary(Matrix!(T, OtherColumns, rowSize) other)
    struct Matrix(T, uint numColumns, uint numRows = numColumns)
    const
    Matrix!(T, OtherColumns, columnSize)
    opBinary
    (
    string op : "*"
    uint OtherColumns
    )
    (
    const auto ref Matrix!(T, OtherColumns, rowSize) other
    )
    if (
    numColumns > 0 &&
    numRows > 0
    )

Meta