loading multiple mat files from a directory one by one, and running a script for them

143 views (last 30 days)
Hi,
I need to execute the following steps in matlab:
  1. 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.
  2. Run a predefined script on that mat file.
  3. Save a variable
  4. Delete all variables and load the next mat file with its new variables
  5. Run the same process for the next mat file in the directory

Answers (2)

KSSV
KSSV on 30 May 2019
matfiles = dir('*.mat') ;
N = length(matfiles) ;
iwant = cell(N,1) ; % to save output
for i = 1:N
load(matfiles(i).name)
% do what you want, let out put be out
iwant{i} = out
end

Image Analyst
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 Introduction to Installation and Licensing 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!