vertcat for a number and string
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi All,
I have to metrices...
1)
SpecialName GenericName
1 457
2 555
3 758
Adding the image of my dataset copied over to excel. The column virtual and Product is giving me hard time for now.
2)
SpecialName GenericName
x NA
y NA
z NA
Now you can see both has the same column name but data type is different. The first one is Number and the 2nd one is string (when i see it shows each wrapped in ' ' hence saying it as string)
Now i want to do vertcat of those two. i trie applyign num2str on 1st one but still vertcat does not work. WHat should i do?
4 Kommentare
Adam
am 18 Sep. 2014
In that case I'm not too sure, I never even realised dataset existed as a type, although I see it is listed for possible removal in a future release.
If you have R2014a you should probably use the dataset2table function to convert to a table then you can use table operations for concatenation.
Image Analyst
am 18 Sep. 2014
I like that answer, Adam. Put it below as an official answer. Tables are available for R2013b and later.
Antworten (2)
Adam
am 18 Sep. 2014
[ num2cell(a); b ]
should work if a and b are your two matrices and the first is a standard numeric array and the second is a cell array.
Siehe auch
Kategorien
Mehr zu Cell Arrays 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!