How to make a xlsx file to a comma delimited csv file?
조회 수: 2 (최근 30일)
이전 댓글 표시
I need to covert a xlsx file to a comma delimited csv file. writematrix is not a good option as its input is matrix and in my case the data look like this:
댓글 수: 0
채택된 답변
Walter Roberson
2021년 3월 24일
readtable and writetable
댓글 수: 2
Walter Roberson
2021년 3월 24일
readtable and writetable again. Both of them can read and write csv and xlsx. There are some differences on the ability to write into selective locations, so which you are using for output can matter, but for this particular purpose the code is simple (provided that the column headings are valid matlab variable names; if not then newer matlab can handle the situation but not older matlab)
추가 답변 (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!