How to read tab delimited .txt file line by line (File attached)?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hello guys,
I want to read a txt file which has data line by line.
Please find the attached file (Data.txt).
Thanks
0 comentarios
Respuestas (1)
KSSV
el 6 de Oct. de 2021
fid = fopen('Data.txt');
tline = fgetl(fid);
while ischar(tline)
disp(tline)
tline = fgetl(fid);
end
fclose(fid);
3 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!