Mat.mul

Computes the matrix multiplication of this * other.

  1. void mul(T factor)
  2. Mat!(T, rowCount, otherColCount) mul(Mat!(T, otherRowCount, otherColCount) other)
    struct Mat(T, size_t rowCount, size_t colCount)
    Mat!(T, rowCount, otherColCount)
    mul
    (
    T
    size_t otherRowCount
    size_t otherColCount
    )
    (
    Mat!(T, otherRowCount, otherColCount) other
    )
    if (
    isNumeric!T &&
    rowCount > 0
    &&
    colCount > 0
    )
  3. Vec!(T, rowCount) mul(Vec!(T, colCount) vector)

Parameters

other Mat!(T, otherRowCount, otherColCount)

The matrix to multiply with this one.

Return Value

Type: Mat!(T, rowCount, otherColCount)

The resultant matrix.

Meta