Matrix.this

Construct this matrix from a 2 dimensional static array.

  1. this(const(Number[columnCount][rowCount]) data)
    struct Matrix(Number, size_t _rowCount, size_t _columnCount)
    @safe pure nothrow inout
    this
    (
    ref const(Number[columnCount][rowCount]) data
    )
    if (
    isNumeric!Number &&
    _rowCount > 0
    &&
    _columnCount > 0
    )
  2. this(const(Number[columnCount][rowCount]) data)
  3. this(Number[rowCount * columnCount] numbers)

Meta