How do I select elements out of a matrix with a loop?

1 次查看(过去 30 天)
Hi, please help. I have a 16x16 matrix where I need to pick a 16 elements out for a 4x4 matrix. (Guyan reduction) I don't know how to make loops jet. /Klara

回答(1 个)

David Sanchez
David Sanchez 2013-9-25
You can try the following:
A = rand(16); % a 16x16 random matrix
B = reshape(M,4,4,16); % you will get 16 4x4 matrices. To access these matrices:
for k=1:16
B(:,:,k);
end
  2 个评论
Gerdur Gardarsdottir
Thank you very much for your answear. But I have 16 dof (16x16)matrix and I need to be able to retain some dof´s e.g. (3 7 11 15) and out them into a 4x4 matrix and then have the omitted in a 12x12 and retian,omitted in an 4x12. I just don-t know how to "pick out" the retained after I have defined them :(.
Jan
Jan 2013-9-25
编辑:Jan 2013-9-25
@Gerdur: I do not understand your question. While many readers are not familiar with the "Guyan reduction", you are. So please explain it as clear as possible. What does this mean: "have the omitted in a 12x12 and retian,omitted in an 4x12"?

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Data Type Conversion 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by