out of memory error

조회 수: 2 (최근 30일)
oblivious
oblivious 2013년 8월 31일
Hi,
I ran a large Monte-Carlo simulation using a loop on a script (not function). After several iterations I got a Out Of Memory error message. I saved the workspace, restarted MATLAB, loaded the saved workspace and modified the loop variable to complete remaining iterations and got the result.
How MATLAB handled this kind of scenario? Why didn't I get any error message when the simulated the remaining segments as I loaded same variables into the RAM?
I need to understand the process badly as I have several other similar simulations to run. Is there any simpler way to get rid of the problem?
  댓글 수: 5
oblivious
oblivious 2013년 9월 1일
Thanks Mr. Roberson. After analyzing for whole day it appears to me that it is due to fragmented memory. Is there any possible solution to this problem apart from significantly changing my algorithm (i.e. without breaking my variables into smaller pieces)?
Walter Roberson
Walter Roberson 2013년 9월 1일
Memory fragmentation can often be considerably reduced by pre-allocation. If you currently expand any matrix (or vector) within a loop, change that to pre-allocate if you can (and otherwise switch to algorithms that allocate in chunks instead of one row at a time.)

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

답변 (0개)

카테고리

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