New array from several arrays
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Ismaeel
am 21 Mär. 2015
Beantwortet: Ismaeel
am 21 Mär. 2015
Hi,
I have the three arrays:
[a(1) a(2) a(3)]
[b(1) b(2) b(3)]
[c(1) c(2) c(3)]
and I want to make a new array as following:
[a(1) b(1) c(1) a(2) b(2) c(2) a(3) b(3) c(3)]
I greatly appreciate any help or any idea
Thanks
1 Kommentar
Akzeptierte Antwort
Azzi Abdelmalek
am 21 Mär. 2015
Bearbeitet: Azzi Abdelmalek
am 21 Mär. 2015
out=[a;b;c];
out=out(:)'
0 Kommentare
Siehe auch
Kategorien
Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!