Calculates the subtraction of two matrices.
The first matrix
The second matrix
const result = Chalkboard.matr.sub([[5, 8], [13, 21]], [[2, 3], [5, 8]]); // Returns [[3, 5], [8, 13]] Copy
const result = Chalkboard.matr.sub([[5, 8], [13, 21]], [[2, 3], [5, 8]]); // Returns [[3, 5], [8, 13]]
Calculates the subtraction of two matrices.