Read .dat file in matlab

2 次查看(过去 30 天)
Sandeep
Sandeep 2013-2-3
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 个评论
Sandeep
Sandeep 2013-2-4
Suppose, I want to extract a certain data by arranging the entire data in the file in an array provided each row has different number of data like
v 1 2 3 4 6
v 1 2 0
v 3 4 9 2..
Also, is there any way to find the number of numbers in each row?

请先登录,再进行评论。

回答(1 个)

Image Analyst
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
Sandeep 2013-2-4
Thanks.. I have another question.. Suppose, I want to extract a certain data by arranging the entire data in the file in an array provided each row has different number of data like
v 1 2 3 4 6
v 1 2 0
v 3 4 9 2..
Also, is there any way to find the number of numbers in each row?
Image Analyst
Image Analyst 2013-2-4
Just count the spaces. The number of spaces equals the number of numbers:
numberOfNumbers = sum(s == ' ')

请先登录,再进行评论。

类别

Help CenterFile 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!

Translated by