Importing multiple non numeric .txt files and assigning file name as variable
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
bugatti79
am 18 Okt. 2013
Beantwortet: Walter Roberson
am 18 Okt. 2013
Hi Folks,
I am trying to import multiple non numeric .txt files and assign each file name as variable. Here is some code but it is not working properly. Ie, it creates a 8 1*1 struct array containing the name, date bytes etc but not the actual numerical data. I suspect the last line is not correct...
files = dir('C:\Test\');
for i=3:size(files, 1)
DELIMITER = ',';
HEADERLINES = 1;
a = importdata(files(i).name, DELIMITER, HEADERLINES );
end
Any ideas? B
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 18 Okt. 2013
Assign to a{i-2} instead of to "a". What you have now will drop all but the last file's data.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Data Import and Analysis finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!