Matrix.opAssign

Assign with a dynamic array of shape (R, C).

  1. Matrix opAssign(U x)
  2. Matrix opAssign(U x)
  3. Matrix opAssign(U x)
  4. Matrix opAssign(U x)
  5. Matrix opAssign(U x)
  6. Matrix opAssign(U x)
  7. Matrix opAssign(U x)
    struct Matrix(T, int R, int C)
    @nogc ref pure nothrow
    opAssign
    (
    U
    )
    (
    U x
    )
    if (
    (isDynamicArray!U) &&
    isDynamicArray!(typeof(x[0]))
    &&
    is(typeof(x[0][0]) : T)
    )

Meta