필터 지우기
필터 지우기

Memory pig?? Problem with kron function

조회 수: 3 (최근 30일)
Zoe Zhang
Zoe Zhang 2011년 8월 4일
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!

채택된 답변

Oleg Komarov
Oleg Komarov 2011년 8월 4일
Your W will be around 300 MB and yes it is a common problem.
Any solution is not infinitely scalable in practice due to constraints:
  • memory (RAM).
  • time.
  댓글 수: 4
Oleg Komarov
Oleg Komarov 2011년 8월 4일
It depends what you need it for...I use a rule of thumb (sorry not literate here). If I were to get too often java errors in the cmd window I would increase the heap space.
Zoe Zhang
Zoe Zhang 2011년 8월 4일
I see. Thanks~ :)

댓글을 달려면 로그인하십시오.

추가 답변 (3개)

Daniel Shub
Daniel Shub 2011년 8월 4일
Have you tried rebooting? You have 4 GB of RAM, MATLAB is using 331 MB, but can only find 587 MB free.
  댓글 수: 2
Zoe Zhang
Zoe Zhang 2011년 8월 4일
No, sadly I know little about that. I know it can be done by running msconfig. Then I don't know which to choose and I am afraid that the computer will be restored back to factory settings. Do you know how? Thanks~~
Oleg Komarov
Oleg Komarov 2011년 8월 4일
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
Sean de Wolski 2011년 8월 4일
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
Sean de Wolski
Sean de Wolski 2011년 8월 4일
Looking into using KronProd, if you have many of these computations to do, is still probably worth your time.
Zoe Zhang
Zoe Zhang 2011년 8월 4일
I will for sure, thank you :)

댓글을 달려면 로그인하십시오.


Zoe Zhang
Zoe Zhang 2011년 8월 4일
I increased the memory allocated to MATLAB R2011a by using the steps at the following link resolves the issue:
>> memory
Maximum possible array: 1023 MB (1.072e+009 bytes) *
Memory available for all arrays: 1637 MB (1.717e+009 bytes) **
Memory used by MATLAB: 306 MB (3.213e+008 bytes)
Physical Memory (RAM): 3774 MB (3.957e+009 bytes)
* Limited by contiguous virtual address space available.
** Limited by virtual address space available.
Now the code runs :) Thanks everyone!

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by