How to solve Out of memory error in MATLAB?
1 次查看(过去 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
采纳的回答
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!
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Import, Export, and Conversion 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!