Clear Filters
Clear Filters

Error using: Out of memory

3 views (last 30 days)
Doriana
Doriana on 25 Jul 2013
Buongiorno,
sto lavorando con model based clustering e dopo aver classificato 15 cluster matlab si è fermato e mi segnala un error Using: out of memory. Come posso configurare matlab in modo tale da poter ottimizzare la memoria?
Le caratteristiche del mio pc sono: Memoria installata (RAM: 4.0 GB (3.0 GB utilizzabile) Tipo sistema: Sistema operativo a 32 bit
Vi ringrazio
Doriana Hoti mail: Doriana.Hoti@Cedacri.it
  1 Comment
Daniel Shub
Daniel Shub on 25 Jul 2013
Google translate says:
Good morning,
I'm working with model-based clustering and cluster matlab ranked 15th after he stopped and gives me an error Using: out of memory. How do I set matlab so that you can optimize your memory?
The characteristics of my PC are: Installed memory (RAM: 4.0 GB (3.0 GB usable) System type: 32-bit operating system
thank you

Sign in to comment.

Accepted Answer

Iain
Iain on 25 Jul 2013
Hello,
"Out of memory" errors typically occur because your code is trying to store a single large array, and it will not fit (contiguously) into the system RAM.
Large arrays can be duplicated when either they are passed into functions, and when increasing the size of the array.
The command "pack" can be used to move memory to attempt to increase the amount of contiguous memory is available. Pack only works at commandline.
Ciao.
  4 Comments
Doriana
Doriana on 25 Jul 2013
understand.....:(
Iain
Iain on 25 Jul 2013
If you save your data to file instead of letting arrays grow too large, you will be able to run your code "indefinitely".

Sign in to comment.

More Answers (1)

Doriana
Doriana on 25 Jul 2013
Thank you for answering me. So, I have to type the command "pack" in the command window , but when?? when I get the error or before running the program??

Categories

Find more on Startup and Shutdown in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!