Finding minimum and maximum in many txt samples.

1 次查看(过去 30 天)
I would like to find min and max in samples which I load from my directory to Matlab. I need to speed up it a little bit and try avoid eg. loops . Is there any easy way how to find min and max in many samples without using 'for' loop? How to read txt files no one by one in a loop but all at once?
Part of my code:
list=dir('*.txt');
for i=1:length(list)
fid=fopen(list(i,1).name);
text_1=cell2mat(textscan(fid,'%f %f'))';
end
fclose(fid);
  1 个评论
Matt Kindig
Matt Kindig 2013-8-6
编辑:Matt Kindig 2013-8-6
One thing that might help is to move the fclose(fid) statement inside the for loop. As it stands now, you are only closing the last file after all *.txt files have been processed. This means that Matlab has to keep each of those file handles open during the loop, which takes up I/O resources.
In other words:
list=dir('*.txt');
for i=1:length(list)
fid=fopen(list(i,1).name);
text_1 = textscan(fid, '%f %f', 'CollectOutput', true));
text_1 = text_1{1}; %this might be a bit faster as well
fclose(fid);
end
Does this help?

请先登录,再进行评论。

回答(1 个)

Azzi Abdelmalek
Azzi Abdelmalek 2013-8-6
I do not think, there is a better way to do it without a for loop

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by