loading multiple mat files from a directory one by one, and running a script for them
Show older comments
Hi,
I need to execute the following steps in matlab:
- Load a file (from a directory containing multiple files of interest). The order wouldn't matter. I just need to do it for all files, but one by one.
- Run a predefined script on that mat file.
- Save a variable
- Delete all variables and load the next mat file with its new variables
- Run the same process for the next mat file in the directory
Answers (2)
Image Analyst
on 10 Apr 2022
Edited: Image Analyst
on 10 Apr 2022
See the FAQ:
There are code samples in the FAQ to do it two different ways. In short,
matFiles = dir('*.mat') ;
numFiles = length(matFiles) ;
for k = 1 : numFiles
% Get file name of one mat file.
thisFileName = fullfile(pwd, matFiles(k).name);
fprintf('Processing "%s".\n', thisFileName);
% Load mat file variables. Any prior ones will be overwritten.
s = load(thisFileName) % This is a structure with all the variables on it as fields.
% Now "Run a predefined script on that mat file."
output(k) = PredefinedFunction(s);
end
Categories
Find more on Low-Level File I/O in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!