Hello
I have an example of script Matlab for read great file *.xls.
% This part read all file *.xls from a directory.
list=dir([direc,'*.xll']);
list=list(~cellfun(@isempty,{list(

.date}));
% Number fille *.xls
numfile=length(list);
for na=1:numfile
% read file *.xls
fname=list(na,1).name;
% fname='R01_W00_S00.xls';
data=xlsread(fname);
% Import the columns odd and even at other variables (cor1 and cor2)
cor1=data(:,1:2:end);
cor2=data(:,2:2:end);
end
Regard
Dave Correa
correa.dave30@gmail.comMatlab Programming Service
http://fismatlab.blogspot.com