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!