How do I work with a two dimensional array with for loops in MATLAB?
Ältere Kommentare anzeigen
How can I do two dimensions array using a FOR loop? Example:
P = {k,l,m,n};
L = 4;
for i=1:L
New(i) = P(i);
end
I don't know how can i do write that result was array in two dimension: New = {k,l,m,n;k,l,m,n;k,l,m,n;k,l,m,n};
Akzeptierte Antwort
Weitere Antworten (1)
Sean de Wolski
am 24 Jan. 2011
Best way would be:
New = repmat(P,4,1);
You should also read up on indexing cell arrays.
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!