Borrar filtros
Borrar filtros

Reading excel files in a directory

2 visualizaciones (últimos 30 días)
Danielle Leblanc
Danielle Leblanc el 19 de Jul. de 2011
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?

Respuesta aceptada

Fangjun Jiang
Fangjun Jiang el 19 de Jul. de 2011
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

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by