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