Calculates the cofactor matrix of a matrix at a row and column.
The matrix
The row
The column
const result = Chalkboard.matr.cofactor([[1, 2, 3], [0, 4, 5], [1, 0, 6]], 0, 1); // Returns the signed minor Copy
const result = Chalkboard.matr.cofactor([[1, 2, 3], [0, 4, 5], [1, 0, 6]], 0, 1); // Returns the signed minor
Calculates the cofactor matrix of a matrix at a row and column.