Can |setappdata| cause a memory leak if not cleared explicitly?
조회 수: 1 (최근 30일)
이전 댓글 표시
I'd like to know if I should explicitly call rmappdata on anything stored using setappdata before the relevant object is deleted to avoid filling up my memory, or do these variables get "garbage-collected" on their own?
According to my test on R2017b@Win10 (code below) this memory is indeed freed, but is this behavior documented somewhere? Is it the same across all supported operating systems and MATLAB versions?
hFig = uifigure;
setappdata(hFig, 'NOISE', randi(5,40001));
delete(hFig);
댓글 수: 0
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Maintain or Transition figure-Based Apps에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!