필터 지우기
필터 지우기

Finding minimum and maximum in many txt samples.

조회 수: 1 (최근 30일)
Jonasz
Jonasz 2013년 8월 6일
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