How can I write a table to .csv file
조회 수: 481 (최근 30일)
이전 댓글 표시
hi,
How can i write a table to an .csv file and save it?
Dion
댓글 수: 0
채택된 답변
EmirBeg
2021년 5월 21일
writetable(x,'table.csv'); % x is the name of your table, the csv will be saved where your code is saved
댓글 수: 0
추가 답변 (1개)
Mathieu NOE
2021년 5월 21일
hello
for numerical data you can use writematrix - see example below
writematrix(rand(100,5),"file.csv","Delimiter",",")
댓글 수: 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!