How can I save 3 matrices created by for loop to save in a single matrix?
조회 수: 4 (최근 30일)
이전 댓글 표시
I have a for loop which outputs the following matrices after each iteration: [3,4;5,6], [8,5;2,4], [1,8;3,7]
I want to save these outputs into a single matrix and it should be this: final=[3,4;5,6;8,5;2,4;1,8;3,7]
The size of the 'final' matrix is known to me.
How do I do this?
댓글 수: 0
채택된 답변
Rishabh Rathore
2018년 6월 5일
편집: Rishabh Rathore
2018년 6월 5일
Since you know the size of the final matrix, first you can initialize the matrix of that size and then assign the appropriate row index.
for example the following code creates the desired matrix from given output of each iterations
matrix=zeros(6,2) % only 3 iteration creating 2*2 matrix.
for i=1:3
%your code%
output=x %2*2 matrix;
matrix((2*i-1),:)=output(1,:);
matrix(2*i,:)=output(2,:);
end
The easier way would be to just append the output of each iteration, but it could be slow as the final matrix won't be pre-allocated, but here's the code, in case you need it.
matrix=[];
for i=1:end
% your code
output=x %2*2 matrix;
matrix=[matrix; output];
댓글 수: 0
추가 답변 (2개)
deepak kumar
2018년 6월 5일
a = [3,4,5,6]
b = [8,5;2,4]
c = [1,8;3,7]
d = vertcat(a,b,c)
or we can also do as temp =[]; for i =1:n %let say a have your output temp =[temp;a] end
댓글 수: 0
Suraj Sudheer Menon
2020년 6월 22일
let x,y,z be the 3 iteration output vectors.
ans=[x ; y ; z]
% This creates a new vector by combining the above vectors. The semi colon indicates seperate rows(vertically joining).
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!