MATRIX COFACTOR
435 views (last 30 days)
Show older comments
Mariana
on 2 Feb 2012
Commented: Walter Roberson
on 11 Oct 2021
I need to know a function to calculate the cofactor of a matrix, thank a lot!
7 Comments
Walter Roberson
on 8 Oct 2021
I suspect that the English word would be "minor". The Spanish word "menor" can be translated as English "minor" in some situations.
Accepted Answer
More Answers (2)
Dr. Murtaza Khan
on 28 Sep 2019
A = [
2 4 1
4 3 7
2 1 3
]
detA = det(A)
invA = inv(A)
cofactorA = transpose(detA*invA)
2 Comments
Francisco Trigo
on 6 Feb 2020
The matrix confactor of a given matrix A can be calculated as det(A)*inv(A), but also as the adjoint(A). And this strange, because in most texts the adjoint of a matrix and the cofactor of that matrix are tranposed to each other. But in MATLAB are equal. I found a bit strange the MATLAB definition of the adjoint of a matrix.
1 Comment
Zuhri Zuhri
on 28 Sep 2021
adjoint matrix is the transpose of the cofactor matrix so the above result is correct
See Also
Categories
Find more on Matrix Indexing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!