How to copy data from multiple .mat files into single .mat file?

11 Ansichten (letzte 30 Tage)
hirra awan
hirra awan am 17 Jul. 2020
Beantwortet: Sindar am 17 Jul. 2020
I have multiple .mat files which contain pixel values of images. each mat file has different number of data.. how can i copy or load all of data from multiple .mat files into a single .mat file?
  1 Kommentar
Dana
Dana am 17 Jul. 2020
The easiest way to do this depends on how many mat files there are, how many variables are in each mat file, whether you know the variable names in each file already, and whether variables in different mat files have the same name. Can you elaborate on your problem a bit more?

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Sindar
Sindar am 17 Jul. 2020
Assuming absolutely nothing about your data, this should dump the saved data into a single matfile (one variable per loaded file)
% list files to draw from
matfile_names = {'mat1.mat';'matb.mat';'frog'};
% remove extension, clear duplicates
matfile_names_stripped = unique(strrep(matfile_names,'.mat',''));
% create valid-variable-name versions
matfile_names_valid_variable = genvarname(matfile_names_stripped);
% prepare an empty structure
all_data = struct();
% for each file...
for ind=1:length(matfile_names_stripped)
% load the data into a field of all_data corresponding to the filename
try
all_data.(matfile_names_valid_variable{ind}) = load([matfile_names_stripped '.mat']);
catch ME
all_data.(matfile_names_valid_variable{ind}) = struct();
end
end
% save the fields of all_data to a new matfile
save('all_data.mat','-struct','all_data');
% version for larger data
% save('all_data.mat','-struct','all_data','-v7.3');

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!

Translated by