how to read records line by line saved in m30.txt .
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/197583/image.png)
0 commentaires
Réponses (1)
madhan ravi
le 29 Nov 2018
Modifié(e) : madhan ravi
le 29 Nov 2018
Edited
Do you mean this?
fid=fopen('m30.txt','r')
f=textscan(fid,'%s','Delimiter','\n')
fclose(fid)
celldisp(f)
3 commentaires
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!