Write Data to txt file from Excel
2 ビュー (過去 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!