How can i change excel file extension into .DAT or .rd file?
조회 수: 27 (최근 30일)
이전 댓글 표시
I tried to change the excel file extension using notepad, but DAT&.rd extensions are not available there, may someone tell me another method to do that?
댓글 수: 3
Walter Roberson
2020년 11월 1일
Is that the correct rdfile format? Or are you using Adobe Creative, which creates .rd files that are completely different?
답변 (1개)
Ameer Hamza
2020년 10월 31일
Try using readtable() and writetable() to convert the data to .dat format
T = readtable('filename.xlsx')
writetable(T, 'filename.dat')
댓글 수: 2
참고 항목
카테고리
Help Center 및 File Exchange에서 Spreadsheets에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!