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