Matrix.opAssign

Assign from other small matrices (same size, compatible type).

  1. Matrix opAssign(U x)
  2. Matrix opAssign(U x)
    struct Matrix(T, int R, int C)
    @nogc ref pure nothrow
    opAssign
    (
    U
    )
    (
    U x
    )
    if (
    is(typeof(U._isMatrix)) &&
    is(U._T : _T)
    &&
    (!is(U : Matrix))
    &&
    (U._R == R)
    &&
    (U._C == C)
    )
  3. Matrix opAssign(U x)
  4. Matrix opAssign(U x)

Meta