Clear Filters
Clear Filters

how to find a complement minor in a matrix

1 view (last 30 days)
how to find a complement minor in a matrix

Accepted Answer

Matt J
Matt J on 13 Dec 2015
Edited: Matt J on 13 Dec 2015
Just apply the det() command to the appropriate sub-matrix, e.g.,
A=rand(4);
compMinor = det( A([1,3,4],[1,2,4]) )
The setdiff() command might also be helpful in finding the appropriate sub-matrix indices.

More Answers (0)

Categories

Find more on Operators and Elementary Operations 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!