how to export data from app.UITable to file csv
조회 수: 4 (최근 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에서 Standard File Formats에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!