How to process text file line by line

조회 수: 1 (최근 30일)
Fateme Jalali
Fateme Jalali 2015년 12월 24일
편집: dpb 2015년 12월 25일
Hi,I have a text file dataset.my data in the text file is like this:
220 210
1678
380 568 90
i want to process each line of data separately.i need the code to read each line.

답변 (1개)

dpb
dpb 2015년 12월 24일
편집: dpb 2015년 12월 25일
doc fgetl
>> fid=fopen('fatem.dat');
>> while ~feof(fid)
x=sscanf(fgetl(fid),'%f');
% insert desired processing here; just display the data here for example
disp(x.')
end
220 210
1678
380 568 90
>> fid=fclose(fid);
>>

카테고리

Help CenterFile Exchange에서 Text Data Preparation에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by