merge arrays of different types to write in excel sheet
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
- Hi All, I have arrays of different types:*
a : 4*8 Char
b : 4*1 double
c : 4*1 double
d : 4*8 Char
e : 4*1 double
I want to merge them as a one array , lets'say, Output.and finally I want to write Output with all of the elements to the excel sheet.
Is there any way to merge these arrays of different types together?
Thanks in advanced for your help.
0 Kommentare
Akzeptierte Antwort
Azzi Abdelmalek
am 7 Jul. 2013
Bearbeitet: Azzi Abdelmalek
am 7 Jul. 2013
Example
a=repmat('a',4,8)
b=rand(4,1)
out=[cellstr(a); num2cell(b)]
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical 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!