Assign name to matrices in a loop
Afficher commentaires plus anciens
Hi,
I'm trying to create new matrices using loop, by concateneting other matrices.
For example I have
A=[1 4 B=[7 10
2 5 8 11
3 6] 9 12]
And I want to create
C1=[1 7 C2)=[4 10
2 8 5 11
3 9] 6 12]
If I use
N=2
for i=1:2
C=[A(:,i) B(:,i)]
end
How do assign a dynamic name to each loop (C1 and C2)? How to I disply each loop as new variable (new matrix)?
Thank you very much
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Loops and Conditional Statements dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!