Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

Asking the error of 'Out of memory'

1 visualización (últimos 30 días)
Hnin Thet Hmue Khin
Hnin Thet Hmue Khin el 13 de Nov. de 2019
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
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.

Respuestas (1)

Daniel M
Daniel M el 13 de Nov. de 2019
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