Matrix constructor

Matrix(
  1. int _row,
  2. int _col
)

Create a new empty matrix

  • row The number of rows in the matrix
  • col The number of columns in the matrix
  • Returns The matrix

Implementation

Matrix(this._row, this._col) {
  empty();
}