I have a set of files in a folder. the file names are listed as : Month_1, Month_2, .... I want to get the data through a loop that i don't have to change the file name every single time. I tried for example:
for (i=1:1:53)
path(i) = strcat('C:\Users\Desktop\Diagramm\','\Month_', i);
aa=xlsread(path(i));
...
end;
but it isn't working. I would appreciate any help.