Out of memory error when calling the same function in a for loop many times
7 次查看(过去 30 天)
显示 更早的评论
I have a function that performs a stochastic simulation and writes results into a csv file.
I have a script:
function RunMultipleSimulations(parameters)
for i=1:N
RunSingleSimulations(parameters, output_filename)
end
end
When I do this for a large number of N, I get out of memory error. I don't understand why this is the case because I thought all variables from calling the function would get cleared at the end and free up the memory.
My workaround has been to run RunSingleSimulations(parameters, ~) individually and then combining the output file at the end. I never get out of memory error while running the function a single time. So I suppose there's some buildup of memory usage by calling it in a for loop, and would like some help understanding why and how to deal with it.
2 个评论
Stephen23
2020-10-13
@Leerang Yang: please upload the function RunSingleSimulations (or an MWE that demonstrates the issue) by clicking the paperclip button. What is the value of N? Are any file handles correctly closed at the end of the function?
Without seeing the function we have to resort to guessing, which is not an efficient way to debug.
采纳的回答
Gaurav Garg
2020-10-12
Hi Yang,
As the error suggests, you have exhausted all your memory when you try to run this function in a loop.
Moreover, you can take help from -
- https://www.mathworks.com/matlabcentral/answers/406845-out-of-memory-error
- https://www.mathworks.com/help/matlab/matlab_prog/resolving-out-of-memory-errors.html
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Environment and Settings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!