Filter löschen
Filter löschen

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

80 Ansichten (letzte 30 Tage)
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

Antworten (2)

KSSV
KSSV am 30 Mai 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 am 10 Apr. 2022
Bearbeitet: Image Analyst am 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

Kategorien

Mehr zu Introduction to Installation and Licensing finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by