필터 지우기
필터 지우기

How to save only latest ~10 iterations on for loop

조회 수: 4 (최근 30일)
sasha
sasha 2014년 6월 12일
댓글: Geoff Hayes 2014년 6월 12일
I'm trying to run a for loop that will give me a new iteration of a matrix at each time step. The problem comes in because I need to calculate up to 20,000 time steps, but I don't have any where near the memory for that. I'm only interesting in the last ~ 10 time steps. Is there some way to write over or erase the older time steps?

채택된 답변

Geoff Hayes
Geoff Hayes 2014년 6월 12일
편집: Geoff Hayes 2014년 6월 12일
If you are only interested in the latest 10 matrices, then you can create a "circular" cell array of fixed size that is updated at each iteration, overwriting the older matrices as the code iterates:
circularArraySz = 10;
circularArray = cell(circularArraySz,1); % create the circular cell array
nextIdx = 1; % the index into the array in which
% to insert the next matrix
% do the for loop
for i=1:20000
% do the work to generate the matrix A
% add A to the cell array
circularArray{nextIdx} = A;
% increment to the next index
nextIdx = nextIdx + 1;
% wrap around to the beginning of the circular array if the index
% is greater than circularArraySz
if nextIdx>circularArraySz
nextIdx = 1;
end
end
When the loop ends, circularArray will have the last ten matrices. Try it out and see what happens!
  댓글 수: 6
sasha
sasha 2014년 6월 12일
Thanks! This works for my test functions!
Geoff Hayes
Geoff Hayes 2014년 6월 12일
Awesome!

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

추가 답변 (1개)

Azzi Abdelmalek
Azzi Abdelmalek 2014년 6월 12일
look at this example, I'm not sur if it's the best way
a=[];
for k=1:20
a(end+1)=k
a(1:end-10)=[]
end

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by