-3
for m=1:numel(myFolder)

end


for x = 1:numel(myFiles)  %
    for j=1:numel(myFolder)            
        eachFile{x}{j} = dir(myFiles{x}{j});            
    end
end

任何想法?

4

1 回答 1

1

这应该工作

for x = 1:numel(myFiles)
      for y = 1:numel(myFiles{x})
          eachFile{x}{j} = dir(myFiles{x}{y}); 
      end
end
于 2013-11-13T09:37:17.060 回答