Calculates the reciprocal of a matrix.
The matrix
const result = Chalkboard.matr.reciprocate([[1, 2], [4, 8]]); // Returns [[1, 0.5], [0.25, 0.125]] Copy
const result = Chalkboard.matr.reciprocate([[1, 2], [4, 8]]); // Returns [[1, 0.5], [0.25, 0.125]]
Calculates the reciprocal of a matrix.