フィルターのクリア

how to find a complement minor in a matrix

1 回表示 (過去 30 日間)
tassadit chekari
tassadit chekari 2015 年 12 月 13 日
編集済み: Matt J 2015 年 12 月 13 日
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 Center および File ExchangeOperators and Elementary Operations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by