Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Asking the error of 'Out of memory'

1 回表示 (過去 30 日間)
Hnin Thet Hmue Khin
Hnin Thet Hmue Khin 2019 年 11 月 13 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
Hello, I have a problem while I'm running my data in matlab. It's saying ' Out of memeory.Type HELP MEMORY for your options. ' If someone knows the solution of it, please kindly answer me. Thank you.

回答 (1 件)

Daniel M
Daniel M 2019 年 11 月 13 日
You are trying to allocate memory to a matrix for more memory than is available in your RAM. The solution completely depends upon what you are trying to do. The operation
x = ones(10,1);
creates an array of 10 elements of type double. The size of this array is 10*8 = 80 bytes (since 8 is the number of bytes required for double precision). At some point in your code you must be trying to do some operation which requires more memory than you have available for you computer. Again, solutions will vary based on what you're trying to do, but you could trying doing your operation on chunks of data at a time.
See this page for more information:

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by