merge arrays into a new one with a specific element sequence
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
pavlos
il 19 Ago 2015
Commentato: Sanjay Singh Negi
il 30 Lug 2021
Hello,
Please help me with the following:
Consider two arrays, A=[a1;a2;a3] and B=[b1;b2;b3].
How can I get a new array C, where
C=[a1;b1;a2;b2;a3;b3] ?
This is an example for small arrays, I would be needing a code for any number of elements.
Thank you.
Best,
Pavlos
0 Commenti
Risposta accettata
Azzi Abdelmalek
il 19 Ago 2015
Modificato: Azzi Abdelmalek
il 19 Ago 2015
A=[1; 2; 3]
B=[4 ;5; 6]
C=[A B]'
C=C(:)
Or
A=[1; 2; 3]
B=[4 ;5; 6]
C=reshape([A B]',[],1)
3 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Creating and Concatenating Matrices 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!