필터 지우기
필터 지우기

Memory during a loop

조회 수: 11 (최근 30일)
Aadil
Aadil 2012년 9월 6일
Hi,
If I run Clear All during a loop, will it also clear the loop value?
Thanks,
  댓글 수: 1
Aadil
Aadil 2012년 9월 6일
ok it seems it does, is there any way round this, I'm reading large .mat data files, any way to only clear them and not the previous variables?

댓글을 달려면 로그인하십시오.

채택된 답변

Jan
Jan 2012년 9월 6일
As usual I mention, that clear all removes all loaded functions from the memory and reloading them from the disk and parsing them wastes a lot of time. When you want to clear variables, use
clear variables
However, Arthur's hint to use S=load() is very good. 1. it is easy to clear, 2. you cannot overwrite local variables by accident (as e.g. the loop counter...), 3. The debugging is much easier, because you can see on first sight, that "S.abcde" comes from the loaded file, and 4. Matlab is much faster with fixed names of variables compared to the ones created dynamically by EVAL or LOAD without catching the output.
  댓글 수: 1
Aadil
Aadil 2012년 9월 7일
hmm ok
so if I have:
for WhichVehicle = 1 : length(ProcessedFolderDirectories)
load(blahblah.mat)
run(blahblah)
clear variables
end
So it will only clear the variables then?

댓글을 달려면 로그인하십시오.

추가 답변 (2개)

Arthur
Arthur 2012년 9월 6일
sure, you can just clear the variable:
clear varname
check:
doc clear
  댓글 수: 3
Arthur
Arthur 2012년 9월 6일
Do you need to load all the variables at once? You can also load a single variable at the time.
S = load(filename, variables)
This can be more memory efficient, but you may have to open the file multiple times...
Jan
Jan 2012년 9월 6일
+1. Especially the suggested "S=load()" is a very good idea.

댓글을 달려면 로그인하십시오.


Sean de Wolski
Sean de Wolski 2012년 9월 6일
편집: Sean de Wolski 2012년 9월 6일
It depends on where you call it, compare:
  • 1
for ii = 1:10
ii
clear all
end
  • 2
for ii = 1:10
clear all
ii
end
But of course Arthur is right - you shouldn't need to use clear all at all.
  댓글 수: 2
Aadil
Aadil 2012년 9월 6일
is there any way to clear the last mat file loaded?
Sean de Wolski
Sean de Wolski 2012년 9월 6일
Assign the *.MAT file you load to a variable then clear it when you're done. That way you aren't poofing variables into your workspace.
for ii = stuff
S = load('mymatfile.mat');
do_stuff_with(S)
clear S
end

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Whos에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by