- .txt, .dat, or .csv for delimited text files
- .xls, .xlsm, or .xlsx for Excel® spreadsheet files
- .xlsb for Excel spreadsheet files supported on systems with Excel for Windows®
- .xml for Extensible Markup Language (XML) files
How to export a matlab table as a excel/csv file?
조회 수: 667 (최근 30일)
이전 댓글 표시
Hi everyone,
Mya someone suggest me how i can export the Matlab table as a csv/excel file?
댓글 수: 0
채택된 답변
Cris LaPierre
2023년 5월 31일
편집: Cris LaPierre
2023년 5월 31일
writetable determines the file format based on the specified extension. The extension must be one of the following:
댓글 수: 0
추가 답변 (1개)
Diwakar Diwakar
2023년 5월 31일
May be this code with help you.
% Sample table data
data = {'John', 25, 'USA'; 'Alice', 32, 'Canada'; 'Mike', 28, 'Australia'};
headers = {'Name', 'Age', 'Country'};
T = table(data(:,1), data(:,2), data(:,3), 'VariableNames', headers);
% Export as Excel file
excelFile = 'table_data.xlsx';
writetable(T, excelFile, 'Sheet', 'Sheet1');
% Export as CSV file
csvFile = 'table_data.csv';
writetable(T, csvFile);
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Spreadsheets에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!