Effacer les filtres
Effacer les filtres

How to import several files of excel into a table in Matlab?

2 vues (au cours des 30 derniers jours)
Jonathan Bijman
Jonathan Bijman le 7 Juin 2019
Dear community
When I use the function "import data", only allows to import one excel file.
The issue is, I have several excel files in one folder and I need to import all that excel files.
Anyone knows a loop that allow to import all that excel files?
Thanks in advance

Réponse acceptée

Walter Roberson
Walter Roberson le 7 Juin 2019
  3 commentaires
Walter Roberson
Walter Roberson le 8 Juin 2019
Modifié(e) : Walter Roberson le 8 Juin 2019
datadir = 'project7\straindata';
dinfo = dir( fullfile(datadir, '*.xlsx') );
filenames = fullfile( datadir, {dinfo.name} );
numfiles = length(filenames);
for K = 1 : numfiles
thisfile = filenames{K};
thistable = readtable(thisfile);
if K == 1
datatable = thistable;
else
datatable = [datatable; thistable];
end
end
At the end of the loop, provided all of the xlsx files had the same number of variables with the same datatypes and the same headers in the same order, then datatable will be a single table containing all of the information from the files.
Jonathan Bijman
Jonathan Bijman le 8 Juin 2019
Thank u, thank u, thank u so much!!!
it works! =)

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by