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()); } } }