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!