Out of memory error - How to solve?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have win7 64 4GB RAM 500GB hardisk laptop. When I try running a normalized periodogram (lomb.m from file exchange), I get this error.
Can someone tell me how to go about this?
Thank you
Ranjani
1 comentario
Matt Kindig
el 27 de Mzo. de 2013
Exactly as the error indicates: you are simply out of memory. You can try by clear()-ing all unnecessary variables prior to the lomb.m call to see if that helps.
Respuestas (1)
Jan
el 28 de Mzo. de 2013
Did you search for "out of memory" in this forum already? You would find these solutions:
- Install more memory
- Reduce the size of the problem
- Use classes with smaller memory needs, e.g. SINGLE instead of DOUBLE, or even better UINT8 if possible
- Install more memory
- Close other applications
- Increase the virtual memory
- Install more memory
- Reformulate the algorithm to use inplace operations. This is not trivial in Matlab, but possible, see e.g. Lorens Blog: in-place operations
0 comentarios
Ver también
Categorías
Más información sobre Introduction to Installation and Licensing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!