How can I make one vector out of two vectors with different lengths?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Is it possible to make one vector out of two vectors with different lengths?
A = [1 1 1 1]
B = [0 0 1 0 1 0]
--> C = [0 0 1 0 1 0 1 1 1 1]
Thank for your help!
2 Kommentare
Mathieu NOE
am 18 Dez. 2020
sure
C = [B A]; % horizontal concatenation
C = [B(:); A(:)]; % vertical concatenation
Antworten (1)
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!