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

80 次查看(过去 30 天)
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

回答(2 个)

KSSV
KSSV 2019-5-30
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 2022-4-10
编辑:Image Analyst 2022-4-10
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

类别

Help CenterFile Exchange 中查找有关 Introduction to Installation and Licensing 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by