Import or Export a Sequence of Files - MATLAB & Simulink (original) (raw)

Main Content

To import or export multiple files, create a control loop to process one file at a time. When constructing the loop:

For example, to read files named file1.txt through file20.txt with importdata:

numfiles = 20; mydata = cell(1, numfiles);

for k = 1:numfiles myfilename = sprintf('file%d.txt', k); mydata{k} = importdata(myfilename); end

To read all files that match *.jpg with imread:

jpegFiles = dir('*.jpg'); numfiles = length(jpegFiles); mydata = cell(1, numfiles);

for k = 1:numfiles mydata{k} = imread(jpegFiles(k).name); end