All,
I try to create an array with some data files and the code I use is the next one:
files=dir('F:\Strain Data\January\*.dat');
d={};
for i=1:length(files)
eval(['d{' int2str(i) '}=load(files(' int2str(i) ').name);']);
end
The code seems to work. However, my data files have headers! In...
My question is pretty simple however I haven't figured out yet.
So, I have a folder with 10,000 data files (*.dat) and I try to import them using a code because it is obvious I cannot import them one by one.
In that case the names of the files are in the form "filename_number"
The files'...