How to read tab delimited .txt file line by line (File attached)?
4 views (last 30 days)
Show older comments
Hello guys,
I want to read a txt file which has data line by line.
Please find the attached file (Data.txt).
Thanks
0 Comments
Answers (1)
KSSV
on 6 Oct 2021
fid = fopen('Data.txt');
tline = fgetl(fid);
while ischar(tline)
disp(tline)
tline = fgetl(fid);
end
fclose(fid);
3 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!