Borrar filtros
Borrar filtros

how to rectify the below error...

1 visualización (últimos 30 días)
Elysi Cochin
Elysi Cochin el 27 de Mzo. de 2015
Comentada: Image Analyst el 28 de Mzo. de 2015
when i execute a training file i get the below error;
??? Error using ==> imread at 359
Can't open file "Face Granules\FGr13.jpg" for reading;
you may not have read permission.
Error in ==> Training at 105
After getting the above error if i click any m-file i get the below error
??? C:\Program Files\MATLAB\R2009b\toolbox\matlab\uitools\uiopen.m: Too many files open;
check that FILES = 20 in your CONFIG.SYS file.
then i need to close matlab and open it again... the training is getting failed due to this error... please can someone help me to solve this error

Respuesta aceptada

Thorsten
Thorsten el 27 de Mzo. de 2015
You don't have to close Matlab, just
close all
Probably you have opened files using fopen, and forgot to close them using fclose?
  4 comentarios
Elysi Cochin
Elysi Cochin el 28 de Mzo. de 2015
thank you all... it worked fine with
fclose('all');
Image Analyst
Image Analyst el 28 de Mzo. de 2015
I think that's somewhat dangerous unless you know what is open. I think you should open and close each file individually. That's the cleanest way to do it. If you just blindly call fclose('all') then it's possible that you might close something you did not intend to. That's why it's better to close each file independently and close it when it makes sense to close it, not just at some arbitrary time later, blindly, and with a sledgehammer.

Iniciar sesión para comentar.

Más respuestas (1)

Image Analyst
Image Analyst el 27 de Mzo. de 2015
Does the file even exist? Try this
if exist('Face Granules\FGr13.jpg', 'file')
uiwait(helpdlg('File exists'));
else
uiwait(warndlg('File does not exist on the search path!'));
end

Categorías

Más información sobre String Parsing 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!

Translated by