Matrix.opOpAssign

operator assign between matrix type (only "*")

  1. Matrix opOpAssign(Matrix!(S, U, V) m)
  2. Matrix opOpAssign(Matrix!(S, U, V) m)
    struct Matrix(T, uint U, uint V)
    opOpAssign
    (
    string op
    S
    )
    (
    Matrix!(S, U, V) m
    )
    if (
    op == "*"
    )
    if (
    __traits(isArithmetic, T)
    )
  3. Matrix opOpAssign(S e)

Parameters

m Matrix!(S, U, V)

target matrix

Return Value

Type: Matrix

calculated this matrix

Meta