convert two column matrices into one column matrix
61 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
fatema saba
am 23 Jun. 2014
Kommentiert: Thallon Pitchure
am 29 Aug. 2020
Hello I want to combine two column vector matrices into one column vector matrix like the example A=[1;4;6;7;8] B=[10;21;11;9] C must be like: C=[1;4;6;7;8;10;21;11;9]
I need a general answer because I have many and large columns. Thank you
1 Kommentar
Thallon Pitchure
am 29 Aug. 2020
Hello! Would anyone be able to answer this except have two column vectors in a single matrix?
Akzeptierte Antwort
José-Luis
am 23 Jun. 2014
C = [A(:);B(:)]
This is a pretty basic question. I recommend you read the "Getting started" part of the documentation.
0 Kommentare
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Numeric Types 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!