Matrix.this

Construct a Matrix from another Matrix, equal sized or bigger Construct a Matrix from another Matrix

  1. this(Args args)
  2. this(T mat)
    struct Matrix(type, int numCols, int numRows)
    nothrow @nogc pure nothrow @nogc pure nothrow @nogc @safe @safe pure nothrow
    this
    (
    T
    )
    (
    T mat
    )
    if (
    (numCols > 1) &&
    (numRows > 1)
    )
  3. this(type value)
  4. this(Q_OR_DQ q)

Meta