欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

matlab遍历文件夹下的所有文件

程序员文章站 2024-03-24 18:19:58
...

matlab遍历文件夹下的所有文件

function [names,class_num] = GetFiles(SamplePath1 )
SamplePath1 = 'C:\Users\Administrator\Desktop\CDG\';
files = dir(SamplePath1);
size0 = size(files);
length = size0(1);

for i=3:length;
   fileName = strcat(SamplePath1,files(i,1).name); 
   names(:,:,i-2) = fileName;
end
class_num = size(names);
end

matlab遍历文件夹下的所有文件