Creating a loop for a Matrix

I have a 4x4 Matrix and need to create all the minors of the matrix. How do I use a single variable to store all the minors of Matrix A? I know you are supposed to use the nested for loops somehow.

댓글 수: 3

Jan
Jan 2011년 10월 20일
Please post, what you have done so far.
Kevin
Kevin 2011년 10월 20일
A=[5, 3, 0, 4; -4, 2, 7, -1; 0, 4, -2, -3; 1, 0, 3, 3]
Fangjun Jiang
Fangjun Jiang 2011년 10월 21일
Wow, you created a matrix!

댓글을 달려면 로그인하십시오.

답변 (1개)

Andrei Bobrov
Andrei Bobrov 2011년 10월 20일

0 개 추천

A=rand(4);
[j1,i1] = meshgrid(1:size(A,1));
Out = arrayfun(@(i1,j1)det(A([1:i1-1,i1+1:end],[1:j1-1,j1+1:end])),i1,j1)

댓글 수: 2

Kevin
Kevin 2011년 10월 20일
I don't understand....I'm looking for a siingle variable M that stores all the minors? This doesn't even use the for loop.
Andrei Bobrov
Andrei Bobrov 2011년 10월 21일
I do not understand what you want. Read the help for each function used in the code and will understand everything.

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

질문:

2011년 10월 20일

Community Treasure Hunt

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

Start Hunting!

Translated by