Add new column a vector.
84 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi everyone. I have some vector for example x=[0;0;2;2;1;0;0;2;0]. How can I add a new vector (for example y=[43;43;34;34;34]) to a second column of vector x, so it becomes x=[0;0;2;2;1;0;0;2;0 43;43;34;34;34]?
2 Kommentare
Akzeptierte Antwort
Ryan
am 12 Jul. 2012
x = [0;0;2;2;1;0;0;2;0];
y = [43;43;34;34;34];
Combined{1} = x;
Combined{2} = y;
You need to use cells {} in order to store vectors of different sizes in one array.
0 Kommentare
Weitere Antworten (2)
Sebastian Holmqvist
am 12 Jul. 2012
x = [0 0 2 2 1 0 0 2 0]';
y = [43 43 34 34 34 0 0 0 0]'; % Must be of same length
You could either
cat(2, x, y)
or simply
ans = [x y]
0 Kommentare
Siehe auch
Kategorien
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!