Effacer les filtres
Effacer les filtres

How concatenate all the excel filles in one table in MATLAB

2 vues (au cours des 30 derniers jours)
Ayman Mounir
Ayman Mounir le 11 Déc 2020
Commenté : Ayman Mounir le 11 Déc 2020
I have many excel files in a folder, I want to concatenate them in one table in MATLAB.
Hint: if i am going to use vercat( readtable('file_name') ); i have to write all the files names this is the issue.
Thanks in advacne

Réponse acceptée

Mathieu NOE
Mathieu NOE le 11 Déc 2020
hi
this is an example
folder = cd;
folderout = [cd '\out'];
Files = dir(fullfile(folder, '*.xlsx')); % Use absolute path names
for ci = 1:length(Files);
data_file = readmatrix(Files(ci).name,'NumHeaderLines',15);
end

Plus de réponses (0)

Produits


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by