Filter löschen
Filter löschen

how to find a complement minor in a matrix

1 Ansicht (letzte 30 Tage)
tassadit chekari
tassadit chekari am 13 Dez. 2015
Bearbeitet: Matt J am 13 Dez. 2015
how to find a complement minor in a matrix

Akzeptierte Antwort

Matt J
Matt J am 13 Dez. 2015
Bearbeitet: Matt J am 13 Dez. 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.

Weitere Antworten (0)

Kategorien

Mehr zu Operators and Elementary Operations finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by