Mat.mul

Multiplies a vector against this matrix.

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

Parameters

vector Vec!(T, colCount)

The vector to multiply.

Return Value

Type: Vec!(T, rowCount)

The resultant transformed vector.

Meta