how to find a complement minor in a matrix

1 次查看(过去 30 天)
how to find a complement minor in a matrix

采纳的回答

Matt J
Matt J 2015-12-13
编辑:Matt J 2015-12-13
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.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Operators and Elementary Operations 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by