In linear algebra, the adjugate matrix (also adjoint matrix) of an invertible matrix is an matrix, whose th entry is given by:
This is used in another definition of the inverse matrix:
In MATLAB, we can use adjoint(A)
.
Computation
As mentioned above, each entry in the adjugate matrix is given by:
i.e., each entry is computed by calculating the cofactor of the element. We essentially calculate the determinant of the resulting matrix without the element’s row/column.
Then, to get the final matrix, we take its transpose. Don’t forget this!