zeros function

Matrix zeros(
  1. int row,
  2. int col
)

Create a matrix with zeros

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

Implementation

Matrix zeros(int row, int col) {
  return Matrix(row, col);
}