Open files from documents in loop
조회 수: 1 (최근 30일)
이전 댓글 표시
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
Chunru
2021년 10월 21일
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
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!