How can I process a sequence of EXCEL files inside a FOR loop
Afficher commentaires plus anciens
i have n numbers of excel files like this : mydata1.xlsx , mydata2.xlsx , mydata3.xlsx and so on . Now i want to process each of the excel file iteratively in a FOR loop . This is what , i have tried so far
for i =1:n
fprintf('Enter the Excel file name \n');
m=input('');
M= xlsread(m);
.
.
.
MY codes
.
.
end
But Its not working . Kindly help me . Thankx in advance.
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Spreadsheets dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!