Open files from documents in loop
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I want to open several files in a for loop.
Anyone who can help me with this?
For now I tried this:
a = "/Users/diontheunissen/Documents/Smart_Driver/RawData/Scania/e-"
b = r
c = ".csv"
filename = strcat(a,b,c);
filename = convertCharsToStrings(filename);
truck1 = readtable(filename, opts);
How can I make r the variable (1 to 20)?
1 Commento
Chunru
il 21 Ott 2021
a = "/Users/diontheunissen/Documents/Smart_Driver/RawData/Scania/e-";
c = ".csv";
for r=1:20
filename = sprintf('%s%d%s', a, r, c);
disp(filename)
%truck1 = readtable(filename, opts);
end
Risposte (0)
Vedere anche
Categorie
Scopri di più su Get Started with MATLAB 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!