Calculates the rounding of a matrix.
The matrix
const result = Chalkboard.matr.round([[1.2, 2.7], [-3.5, 4.4]]); // Returns [[1, 3], [-3, 4]] Copy
const result = Chalkboard.matr.round([[1.2, 2.7], [-3.5, 4.4]]); // Returns [[1, 3], [-3, 4]]
Calculates the rounding of a matrix.