Error using load Out of memory. Type HELP MEMORY for your options.
Show older comments
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 Comment
Walter Roberson
on 10 Apr 2019
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
Accepted Answer
More Answers (0)
Categories
Find more on Whos in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!