Can I import many different xls files at once?
1 次查看(过去 30 天)
显示 更早的评论
Example:
I want to write an m file for the following.
I want to import 20 different xls files, all located in one folder.
I want to find the sum of the values present in each xls file and produce the resultant sum of each xls file.
But I want all the xls files to be imported at once. I can't keep on importing one by one. Because in some cases the number of files may even increase to 50.
Someone could help me?
0 个评论
采纳的回答
Azzi Abdelmalek
2013-1-19
编辑:Azzi Abdelmalek
2013-1-19
d=struct2cell(dir('yourfolder/*.xls'))
file=d(1,:)
for k=1:numel(file)
res{k}=xlseread(file{k});
r_mean{k}=mean(res{k});
r_sum{k}=sum(sum(res{k}))
end
更多回答(1 个)
Image Analyst
2013-1-19
编辑:Image Analyst
2013-1-19
You can't import them all "at once" - you have to do it one file at a time. The closest you could get to doing them "at once" is if you have the Parallel computing toolbox, and set up several processes to read in files in parallel.
But assuming you want to do them "at once" just to speed up the process, don't use xlsread() unless you want to wait forever because it will have to launch Excel and shutdown Excel every single time. You should use ActiveX. Search the forum for "actxserver" - many people, including me, have posted sample code. Or search the Mathworks site. This method, while more difficult to code, will be A LOT faster.
I presume you know how to use the sum() function to sum values. See Azzi's code if you don't.
You might be interested in this video tutorial: http://blogs.mathworks.com/videos/2012/03/28/matlab-tutorial-processing-an-excel-file-in-matlab/
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 ActiveX 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!