Borrar filtros
Borrar filtros

how to find a complement minor in a matrix

1 visualización (últimos 30 días)
tassadit chekari
tassadit chekari el 13 de Dic. de 2015
Editada: Matt J el 13 de Dic. de 2015
how to find a complement minor in a matrix

Respuesta aceptada

Matt J
Matt J el 13 de Dic. de 2015
Editada: Matt J el 13 de Dic. de 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.

Más respuestas (0)

Categorías

Más información sobre Operators and Elementary Operations en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by