function MyGetFiles(F)
path=F;
filelist=dir(fullfile(path,'*.JPG'));
n=length(filelist);
for i=1:n
f=strcat(path,filelist(i).name);
disp(f);
end

 

MyGetFiles('N:/MAT/img/eye/');

相关文章:

  • 2022-12-23
  • 2021-11-24
  • 2021-12-09
  • 2021-10-02
  • 2022-02-02
  • 2022-01-27
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-12-26
  • 2021-05-21
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案