string array to excel
34 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
TheDice
el 26 de Abr. de 2021
Comentada: Stephen23
el 27 de Abr. de 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
Respuesta aceptada
Scott MacKenzie
el 26 de Abr. de 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');
Más respuestas (0)
Ver también
Categorías
Más información sobre Spreadsheets en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!