I need a loop which puts every (j,k) element of every matrix in different columns.

조회 수: 2 (최근 30일)
a = [1 2 ;3 4]; % This are my matrices
b = [5 6 ;7 8]
% I need a loop which puts every (j,k) element-
% of every matrix in different columns. It means i have 4 colums-
% and each have 2 rows . Finaly it should look
% like this:
[1;5] ,[3;7], [2;6], [4;8]
PS. : It has to be an loop.
Thanks very much!
  댓글 수: 3
Rik
Rik 2019년 4월 10일
Why does it have to be a loop? Is this homework?
Sain Cloud
Sain Cloud 2019년 4월 10일
편집: dpb 2019년 4월 10일
Yeah it's one of my university projects...
I've simplified the Problem.. There are actually much more matrices and each matrix represents an image with pixels.
and this ist what i tried so far:
a = [1 2 ;3 4];
b = [5 6 ;7 8];
v=zeros(2,4);
o = {a,b}
for i= 1:2
for j=1:2
for k=1:2
v(j,k) = o{1,i}(j,k) % I thing the problem is here..
end
end
end

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

채택된 답변

Jan
Jan 2019년 4월 10일
What about:
d = cat(3, O{:});
d = permute(d, [3,1,2])
Now you have the wanted columns as first index.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by