Matrix.opOpAssign

Processes matrix multiplication with another matrix.

  1. void opOpAssign(Matrix!(Lines, Cols, SumType) summand)
  2. void opOpAssign(Number num)
  3. void opOpAssign(Factor factor)
    struct Matrix(size_t Lines, size_t Cols, Type = float)
    @trusted pure nothrow
    void
    opOpAssign
    (
    string op
    Factor
    )
    (
    in Factor factor
    )
    if (
    op == "*" &&
    isMatrix!Factor
    &&
    Cols == Factor.lines
    &&
    is(Factor.type : Type)
    )
    if (
    Lines > 0 &&
    Cols > 0
    )

Meta