Matrix.opOpAssign

Processes matrix multiplication and division with number.

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

Meta