I'm trying to write a bit of user friendly code where the user is prompted to enter file names and the names will be stored in an array. However, I keep getting errors. Can someone fix this code below?
이전 댓글 표시
%create a vector of day files
%first prompt the user for how many files they will process
IterationDay = input('How many days are you interested in processing? ');
%create a 'for' loop to write file names to matrix
for i=1:IterationDay
dayvec(i) = input('Please enter a file name: ','s');
end
for i=1:length(dayvec)
Day = dayvec(i);
%At this point another program would be called to sequentially deal with each
%day file. The files are in a format 'YYYYMMDD.csv'. It is the '.csv' that
%seems to stump the program (otherwise I can read in the name as a number and
%easily store it in an array) but I don't know how to read the files in without
%the '.csv'
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!