필터 지우기
필터 지우기

Reading excel files in a directory

조회 수: 2 (최근 30일)
Danielle Leblanc
Danielle Leblanc 2011년 7월 19일
I have many excel files (.xlsx format) in a directory with names R1,R2,R3....R89. Is it possible to read them one by one to execute certain commands and save them back without having to do it manually?

채택된 답변

Fangjun Jiang
Fangjun Jiang 2011년 7월 19일
Something like this:
for k=1:89
FileName=['R',num2str(k)];
data=xlsread([FileName,'.xlsx']);
% do stuff on data
xlswrite([FileName,'_Output.xlsx'],data);
end

추가 답변 (0개)

카테고리

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