How to solve Out of memory error in MATLAB?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
krishna sravani
el 8 de Mayo de 2017
Comentada: Jan
el 9 de Mayo de 2017
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 comentarios
Respuesta aceptada
Guillaume
el 8 de Mayo de 2017
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!
Más respuestas (0)
Ver también
Categorías
Más información sobre Import, Export, and Conversion en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!