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 个评论

Please post, what you have done so far.
A=[5, 3, 0, 4; -4, 2, 7, -1; 0, 4, -2, -3; 1, 0, 3, 3]
Wow, you created a matrix!

请先登录,再进行评论。

回答(1 个)

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 个评论

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