Concatenate String and Numbers Horizontally
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have 3 columns of data: 1 string and 2 number
a = [ 'A';'B';'C'] b = [75; 85; 95] c = [89; 95; 58]
I am trying to horizontally concatenate a,b,c into one array of d. As seen below:
'A' 75 89
'B' 85 95
'C' 95 58
Some reason it is the combination of stings and numbers that is causing the problem.
Thanks, Amanda
0 Kommentare
Akzeptierte Antwort
Azzi Abdelmalek
am 19 Feb. 2013
Bearbeitet: Azzi Abdelmalek
am 19 Feb. 2013
You should use a cell array
out=[cellstr(a) num2cell(b) num2cell(c)]
Weitere Antworten (0)
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!