Matrix.opOpAssign

operator assign between scalar type ("*" or "/")

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

Parameters

e S

target scalar value

Return Value

Type: Matrix

calculated this matrix

Meta