Write Data to txt file from Excel
조회 수: 9 (최근 30일)
이전 댓글 표시
I have some data in cell D3:D10 in an excel file. I want to write these particular data in a txt file. How do I do that?
댓글 수: 2
Walter Roberson
2022년 3월 17일
편집: Walter Roberson
2022년 3월 17일
Is it numeric data?
Is it required that the MATLAB program instruct Excel to write the data, or would it instead be acceptable to read the data into MATLAB and have MATLAB write the data?
채택된 답변
Arif Hoq
2022년 3월 17일
편집: Arif Hoq
2022년 3월 17일
try this:
A=readtable('data.xlsx','ReadvariableName',false);
writetable(A,'myfile.txt')
or
B=readmatrix('data.xlsx');
writematrix(B,'myfile2.txt')
추가 답변 (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!