Matrix.this

Construct a Matrix from another Matrix, equal sized or bigger

  1. this(Args args)
  2. this(T mat)
    struct Matrix(type, int numCols, int numRows)
    @safe pure nothrow
    this
    (
    T
    )
    (
    T mat
    )
    if (
    isMatrix!T &&
    (T.rows >= rows)
    &&
    (T.cols >= cols)
    )
    if (
    (numCols > 1) &&
    (numRows > 1)
    )
  3. this(T mat)
  4. this(valueType value)

Meta