Merging contents of multiple MAT files

13 views (last 30 days)
Hello,
I got a collection of MAT files (generated by External Mode data archiving) that have names such as below and their count can go into 1000's: - MyMatFile_0.mat - MyMatFile_1.mat (...) - MyMatFile_2999.mat - MyMatFile_3000.mat
What i want to achieve is to merge all the arrays from inside the MAT files vertically together (like [MyMatFile_0.mat ; MyMatFile_1.mat ... ] and save that new single array to a spearate MAT file or simply leave it in workspace.
So for, example, with the files I'm attaching, each of them contains a 20x2 double array and I want to merge them together to make one MAT file with 60x2 double array.
Also, this batch of files is generated per each experiment i do and for each experiment the total number of MAT files may vary and the amount of elements in array in each MAT file also may vary (but there will be always 2 columns).
Any help is appreciated.

Accepted Answer

Stephen23
Stephen23 on 25 Oct 2018
Edited: Stephen23 on 18 Apr 2021
To read the files in the correct order download my FEX submission natsortfiles:
Then all you need is this (the input and output files are attached):
D = 'path to the folder where the files are saved'
D = '.';
S = dir(fullfile(D,'TestLog_*.mat'));
S = natsortfiles(S); % alphanumeric sort by filename
for k = 1:numel(S)
T = load(fullfile(D,S(k).name));
S(k).data = struct2cell(T);
end
M = vertcat(S.data);
save('TestLog.mat','M')
This will work for any number of .mat files, with a few conditions:
  • each .mat file contains only one variable.
  • the output file is in a different folder or does not match the dir filename string (otherwise you could end up accumulating the same data repeatedly).
  9 Comments
Hanah Aemilia Choice
Hanah Aemilia Choice on 20 Jan 2022
Edited: Hanah Aemilia Choice on 20 Jan 2022
When I run this script (the first posted solution), I get the error message:
Reference to non-existent field 'data'.
Error in displayscript (line 23)
M = vertcat(S.data);
I'm wondering what the cause of this would be.
Stephen23
Stephen23 on 20 Jan 2022
Edited: Stephen23 on 20 Jan 2022
"I'm wondering what the cause of this would be."
No files match the DIR name pattern so S is sempty, so the loop never iterates, so the data field is not created.
Take a look at numel(S)

Sign in to comment.

More Answers (0)

Categories

Find more on File Operations in Help Center and File Exchange

Products


Release

R2018b

Community Treasure Hunt

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

Start Hunting!