Matrix.zeros = function (rows, cols) {
  const m = generate(rows, cols)
  return Matrix.of(m).fill(x => 0)
}