Calculates the multiplication of two matrices.
The first matrix
The second matrix
const result = Chalkboard.matr.mul([[1, 2], [3, 4]], [[0, 1], [1, 0]]); // Returns [[2, 1], [4, 3]] Copy
const result = Chalkboard.matr.mul([[1, 2], [3, 4]], [[0, 1], [1, 0]]); // Returns [[2, 1], [4, 3]]
Calculates the multiplication of two matrices.