Matrix.opBinary

Returns the result of multiplying vec by Matrix. If matrix is not square, the resulting array dimension will be different from input.

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

Meta