Matrix constructor

Matrix(
  1. int m,
  2. int n
)

Implementation

Matrix(this.m, this.n) {
  for (int i = 0; i < m; i++) {
    entries.add([]);
    for (int j = 0; j < n; j++) {
      entries[i].add(Complex.zero());
    }
  }
}