Checks if a matrix is an identity matrix.
The matrix
const result = Chalkboard.matr.isIdentity([[1, 0], [0, 1]]); // Returns true Copy
const result = Chalkboard.matr.isIdentity([[1, 0], [0, 1]]); // Returns true
Checks if a matrix is an identity matrix.