how to read records line by line saved in m30.txt .
1 回表示 (過去 30 日間)
古いコメントを表示
回答 (1 件)
madhan ravi
2018 年 11 月 29 日
編集済み: madhan ravi
2018 年 11 月 29 日
Edited
Do you mean this?
fid=fopen('m30.txt','r')
f=textscan(fid,'%s','Delimiter','\n')
fclose(fid)
celldisp(f)
3 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!