Matrix.opAssign

Assign with a static 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)
    struct Matrix(T, int R, int C)
    @nogc ref pure nothrow
    opAssign
    (
    U
    )
    (
    U x
    )
    if (
    (isStaticArray!U) &&
    isStaticArray!(typeof(x[0]))
    &&
    is(typeof(x[0][0]) : T)
    &&
    (U.length == R)
    &&
    (x[0].length == C)
    )
  6. Matrix opAssign(U x)
  7. Matrix opAssign(U x)

Meta