why my loop keeps only the last run?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Ivan Mich
il 30 Gen 2023
Risposto: Image Analyst
il 30 Gen 2023
I am creating a zeros cell with dimensions 2x4 in order to work in a loop. the problem is that my script do not keep all the runs of the loop, but only the last one. As a result I have a cell array 1x4 and not 2x4 as I wanted.
I have tried:
C=zeros(2,4);
C=num2cell(C);
for z=1:2
C=[A(z) B(z) D(z) E(z)]
end
%A,B,D,E are variables
Could you please help me?
0 Commenti
Risposta accettata
Image Analyst
il 30 Gen 2023
You're not indexing C so you're just overwriting it every time. Fix:
C=zeros(2,4);
for z=1:2
C(z, :) =[A(z) B(z) D(z) E(z)];
end
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Loops and Conditional Statements in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!