dimikay1
Civil/Environmental
- Mar 30, 2013
- 4
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 that case the function "load" does not apply!!!
Any help?
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 that case the function "load" does not apply!!!
Any help?