How to load multiple mat files from a folder in a sequence?
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Tomaszzz
am 10 Dez. 2021
Bearbeitet: Stephen23
am 10 Dez. 2021
Hi all,
I have folder with multiple mat files that I want to sequentially import into the workspace . I have the following script that produces the error claiming the file does not exists in the folder. One example file attached. Could you please help?
%% get participant file names and start loop
all_files = dir(fullfile(Folder, '*.mat'));
for files_i = 1 : length(all_files)
% read in data
disp(all_files(files_i).name)
data = load(fullfile(all_files(files_i).name));
% execute what I want
end
Error using load
Unable to read file 'XsensData_ID001_T001_mat.mat'. No such file or directory.
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Workspace Variables and MAT Files 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!