How can I fix an Out of Memory error?

31 次查看(过去 30 天)
Dear All,
I am running a quite large code on my university supercomputer, and I keep getting the following error:
Error using cat
Out of memory. Type HELP MEMORY for your options.
Could you help me please?
Thanks in advance.
Best regards,
Hadi.

采纳的回答

Salaheddin Hosseinzadeh
编辑:Salaheddin Hosseinzadeh 2015-6-22
Hello Hadi,
Mainly you're running out of RAM memory.
You may have to modify your code to be able to run it. There are different ways of optimizing the code.
1- Reducing the number of variables. for instance, instead of creating new variables, use the already defined variables.
x = y + 2; % x is a new variable can be avoided
y = y + 2; % there is no permanent x here however y value is changed
2- Define variables as single prevision single() or int32 or .... This is going to help a lot with big matrices! You just have to be careful if this is changing the precision of your process. (there is no point to assign a double to define a variable like 32, int is enough). This also may cause you some complications, as some operations only support double precision. (try this it's very effective)
3- Use sparse matrix if possible.
4- Close other applications that are using your PC's RAM.
These are all that I can think of. ATM
Good Luck!
  3 个评论
Salaheddin Hosseinzadeh
Hi Hadi
One more point!!!!
You can clear the variables that you already processed and you don't need anymore.
x = y + 2;
clear y % assuming that you won't need y later.
;)
hadi
hadi 2015-6-23
Thank you very much for all your help and efforts.

请先登录,再进行评论。

更多回答(3 个)

MANICKA SELVI M
MANICKA SELVI M 2016-3-18
can anyone say what is sparse memory?

MANICKA SELVI M
MANICKA SELVI M 2016-3-18
hai guys, i am doing the project feature enriched completely blind image quality evaluator. we have the code in our hand. we are clear with more concepts in code but we have some doubts in some concepts. cam anybody please clear those doubts

mahi foreview
mahi foreview 2016-11-2
hi, how to use image processing in simulink...

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by