Construct a matrix from rows.
auto row = Vector!(double, 2)(2.0, 4.5); const matrix = Matrix!(double, 2).fromRows([row, row]); assert(matrix.v == [2.0, 4.5, /**/ 2.0, 4.5]);
See Implementation
Construct a matrix from rows.