Calculates the solution to a system of linear equations defined by a coefficients matrix and a constants matrix.
The coefficients matrix
The constants matrix
const result = Chalkboard.matr.solve([[2, 1], [1, -1]], [[5], [1]]); // Solves the linear system Copy
const result = Chalkboard.matr.solve([[2, 1], [1, -1]], [[5], [1]]); // Solves the linear system
Calculates the solution to a system of linear equations defined by a coefficients matrix and a constants matrix.