How to merge data’s of multiple dot mat files in one dot matfile (one table)
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Yared Daniel
il 22 Mag 2021
Commentato: Sulaymon Eshkabilov
il 23 Mag 2021
Hello every one
I have multiple dot mat files like x0.mat, x1.mat, x2.mat, x3.mat
and each file contains 1D time series data. What I need is to merge those data found in each dot mat file in one dot mat file, which contains the name of the files with corresponding data's. I have attached the dot mat files
Thanks for your help
0 Commenti
Risposta accettata
Sulaymon Eshkabilov
il 22 Mag 2021
Hi,
Here is a simple solution:
for ii=1:4
FN= strcat(['x' num2str(ii-1)], '.mat');
D=load(FN);
X_all(ii,:)=D.x; % OR: % x(ii,:)=D.x;
end
save('ALL.mat', 'X_all') % OR: save('ALL.mat', 'x')
Good luck.
6 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Statistics and Linear Algebra in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!