Checks if two matrices are approximately equal to each other within a particular precision.
The first matrix
The second matrix
Optional
The precision to check
const result = Chalkboard.matr.isApproxEqual([[1, 2]], [[1, 2.0000001]]); // Returns true Copy
const result = Chalkboard.matr.isApproxEqual([[1, 2]], [[1, 2.0000001]]); // Returns true
Checks if two matrices are approximately equal to each other within a particular precision.