How to solve Out of memory error in MATLAB?

2 次查看(过去 30 天)
A=[10 20 30;14 15 18];
B=median(median(A));
this the code which i have been used for calculating median value of the matrix.....but i have got the following error...
Error using rjpg8c
Out of memory. Type HELP MEMORY for your options.
Error in readjpg (line 11) A = rjpg8c(filename); My laptop is cofigured with 3GB RAM...and I am using matlab 16a...Thanks for any help in advance
  4 个评论
krishna sravani
krishna sravani 2017-5-8
Error using rjpg8c Out of memory. Type HELP MEMORY for your options. Error in readjpg (line 11) A = rjpg8c(filename) this is the error which i got while executing it....

请先登录,再进行评论。

采纳的回答

Guillaume
Guillaume 2017-5-8
rjpg8c and readjpg are functions called by imread when reading an 8-bit jpg image.
If you get an out of memory error in these functions, it must be because you're trying to read an image that takes too much memory for your machine. There's not much you can do about it other than adding more memory to your machine (or freeing memory used by other programs) or reading smaller images.
Note that this is absolutely nothing to do with the built-in matlab median function. If you get this error when calling median, it is thus because you've created your own median function in one of the folders on the path. If so, don't do that!
  1 个评论
krishna sravani
krishna sravani 2017-5-9
Exactly I have deleted another file with name median in my folder , then it is working.... thank you...

请先登录,再进行评论。

更多回答(0 个)

类别

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