how to export data from app.UITable to file csv
3 次查看(过去 30 天)
显示 更早的评论
global data;
T=table(data);
app.UITable.Data=T;
filename='data.csv';
writetable(T,filename,'WriteRowNames', true);
1 个评论
Cris LaPierre
2021-11-4
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.
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Import and Analysis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!