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 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!