string array to excel
16 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
TheDice
am 26 Apr. 2021
Kommentiert: Stephen23
am 27 Apr. 2021
Hello I have an 8x14 string array and would like to export it as an Excel file. Is there a command to do this?
Many greetings
Fabian
Akzeptierte Antwort
Scott MacKenzie
am 26 Apr. 2021
Am I missing something, or is this as simple as it seems:
s = repmat(["a" "bcd"], 8, 7); % 8x14 string matrix
writematrix(s, 'temp.xlsx');
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Spreadsheets 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!