필터 지우기
필터 지우기

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 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