Memory pig?? Problem with kron function
Mostrar comentarios más antiguos
W = kron(inv_covariance,I);
??? Out of memory. Type HELP MEMORY for your options.
Error in ==> kron at 34
K = A(ia,ja).*B(ib,jb);
inv_covariance = 11*11 double, I = ones(598,598)
I ran this code on Tuesday, totally worked. But since yesterday, failed to run.
>> memory
Maximum possible array: 200 MB (2.095e+008 bytes) *
Memory available for all arrays: 587 MB (6.157e+008 bytes) **
Memory used by MATLAB: 331 MB (3.468e+008 bytes)
Physical Memory (RAM): 3774 MB (3.957e+009 bytes)
- Limited by contiguous virtual address space available. Limited by virtual address space available.
I think there is enough space (Java heap space 943 MB) and tech support helped me to run this code on other computers that have the same operation system as mine and the code worked.
Does this occur to anyone before? Any suggestions? Thanks in advance!
Respuesta aceptada
Más respuestas (3)
Daniel Shub
el 4 de Ag. de 2011
1 voto
Have you tried rebooting? You have 4 GB of RAM, MATLAB is using 331 MB, but can only find 587 MB free.
2 comentarios
Zoe Zhang
el 4 de Ag. de 2011
Oleg Komarov
el 4 de Ag. de 2011
Reduce the Java heap space, I have the standard 128 MB. Also, what system are you running, how many applications do you have at startup?
Sean de Wolski
el 4 de Ag. de 2011
1 voto
Can't you just open the task manager and look at what's using what? Close the program using the most memory... 300Mb of RAM is small for most of today's computers. You could also look at using Matt J's KronProd class which skips the full expansion.
3 comentarios
Zoe Zhang
el 4 de Ag. de 2011
Sean de Wolski
el 4 de Ag. de 2011
Looking into using KronProd, if you have many of these computations to do, is still probably worth your time.
Zoe Zhang
el 4 de Ag. de 2011
Zoe Zhang
el 4 de Ag. de 2011
Categorías
Más información sobre Startup and Shutdown en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!