Error using load Out of memory. Type HELP MEMORY for your options.
이전 댓글 표시
I cannot load a variable (info.mat) file with size 973 MB. It shows
Error using load
Out of memory. Type HELP MEMORY for your options.
Can Anyone suggest what to do?
Help is greaty appriciated.
댓글 수: 1
Walter Roberson
2019년 4월 10일
It is possible to get into that situation in some cases:
- file was built on a system with more memory and involves very heavy compression (for example an array that is nearly all zero would compress well)
- file is corrupt
- file was built incrementally, using -append to write one variable at a time, but you are trying to load back the entire file
- variables were built incrementally using matfile() and a -v7.3 file, which can sometimes permit you to create a variable in a file that is larger than your available memory
- certain cases involving symbolic expressions can end up expanding representation
- If you accidentally saved a figure handle as part of data, then loading the figure could take a lot of memory
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Whos에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!