Read .dat file in matlab
이전 댓글 표시
I have a .dat mesh file which looks something like this
v 0 1 2 3
v 2 4 5
..
Any idea how I can read the file in matlab and find the number of occurrences of a particular string and also the number of integers in a particular row?
답변 (1개)
Image Analyst
2013년 2월 3일
편집: Image Analyst
2013년 2월 3일
Just read it in line by line with fgetl(). Then use strfind() on each line to see if some sequence of numbers you're interested in exists in the string.
fid = fopen('sandeep data.dat);
tline = fgetl(fid);
while ischar(tline)
disp(tline)
tline = fgetl(fid);
if strfind(s, '2 4 5') > 0
message = 'Found it';
uiwait(msgbox(message));
end
댓글 수: 2
Sandeep
2013년 2월 4일
Image Analyst
2013년 2월 4일
Just count the spaces. The number of spaces equals the number of numbers:
numberOfNumbers = sum(s == ' ')
카테고리
도움말 센터 및 File Exchange에서 Large Files and Big Data에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!