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

4 Ansichten (letzte 30 Tage)
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

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 7 Jun. 2019
  3 Kommentare
Walter Roberson
Walter Roberson am 8 Jun. 2019
Bearbeitet: Walter Roberson am 8 Jun. 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 am 8 Jun. 2019
Thank u, thank u, thank u so much!!!
it works! =)

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by