how to export data from app.UITable to file csv
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
global data;
T=table(data);
app.UITable.Data=T;
filename='data.csv';
writetable(T,filename,'WriteRowNames', true);
1 comentario
Cris LaPierre
el 4 de Nov. de 2021
What isn't working about the code you have written? Are there error messages? Please share the complete message (all the red text) if so.
Respuestas (0)
Ver también
Categorías
Más información sobre Data Import and Analysis 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!