matlab2020a increasingly taking more memory as program running

1 visualización (últimos 30 días)
Y. Li
Y. Li el 24 de Mayo de 2020
Comentada: Y. Li el 28 de Mayo de 2020
I have posted a question regarding this but get no answer. The question is here:https://www.mathworks.com/matlabcentral/answers/531558-matlab-2020a-crash-due-to-out-of-memory
The problem can be reproduced with fellowing simple code only in release 2020a (well, only 2020a has this problem):
===================================================
clear
while 1
a = rand(100,100);
b = a.^2;
c = fft(a(:,1));
end
=============================================================
when running this code, despite no more variable is created, Matlab will take ~200kb more memory every second, and eventually dry out all memoery I have in few hours(days). It will need all those three lines in the loop to reproduce this problem somehow. 2019a does not have this problem.
Any insight regarding this?

Respuestas (1)

Rajani Mishra
Rajani Mishra el 26 de Mayo de 2020
Question will be more clear if code is also provided. I tried code with above mentioned 3 lines in a loop running for 10000 times and it works fine. Possibly the infinite loop in the line " while 1 " is causing the problem.
  1 comentario
Y. Li
Y. Li el 28 de Mayo de 2020
I think you probably misinterpret the question here.
As I stated in the question, this code will slowly consume more memory as it runs. Specificlly, about 200kb more every second on my machine. If you let the code above run as it is without change anything, you should be able to see it consuming more memory over time clearly from task manager.
This behavior will cause problem for programs need to run for days.

Iniciar sesión para comentar.

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by