Azzera filtri
Azzera filtri

how to find a complement minor in a matrix

1 visualizzazione (ultimi 30 giorni)
how to find a complement minor in a matrix

Risposta accettata

Matt J
Matt J il 13 Dic 2015
Modificato: Matt J il 13 Dic 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.

Più risposte (0)

Categorie

Scopri di più su Operators and Elementary Operations in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by