How can I save 3 matrices created by for loop to save in a single matrix?

6 vues (au cours des 30 derniers jours)
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?

Réponse acceptée

Rishabh Rathore
Rishabh Rathore le 5 Juin 2018
Modifié(e) : Rishabh Rathore le 5 Juin 2018
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];

Plus de réponses (2)

deepak kumar
deepak kumar le 5 Juin 2018
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

Suraj Sudheer Menon
Suraj Sudheer Menon le 22 Juin 2020
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).

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by