필터 지우기
필터 지우기

Can I import many different xls files at once?

조회 수: 1 (최근 30일)
Raj Shankar
Raj Shankar 2013년 1월 19일
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?

채택된 답변

Azzi Abdelmalek
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
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.

카테고리

Help CenterFile Exchange에서 Spreadsheets에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by