How can I make one vector out of two vectors with different lengths?
2 views (last 30 days)
Show older comments
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 Comments
Mathieu NOE
on 18 Dec 2020
sure
C = [B A]; % horizontal concatenation
C = [B(:); A(:)]; % vertical concatenation
Answers (1)
See Also
Categories
Find more on Creating and Concatenating Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!