Effacer les filtres
Effacer les filtres

Read multiple xls files in a for loop

2 vues (au cours des 30 derniers jours)
Theodore
Theodore le 3 Juil 2013
Hello! I was trying to get 3 excel files to read through a for loop and do a simple function. The dates (mm/dd/yy) read into matlab code and I'd like to spit them back out as new variables that translate them back into dates via the datestr function. I know its my coding that is the problem and I've tried manipulating it several times with no success so any suggestions would be greatly appreciated! Thanks!
source_dir = '/Users/student/Documents/MATLAB/RAWS Station Data';
dest_dir = '/Users/student/Documents/MATLAB/RAWS Results';
source_files = dir(fullfile(source_dir, '*.xls'));
n=length(source_files);
i=n;
for i=1:n
a= xlsread(source_files);
d = a(:,1);
ds(i) = datestr(d,2);
end

Réponse acceptée

Jan
Jan le 4 Juil 2013
Please use the debugger to find out more details:
dbstop if error
Then run the program until it stops and check:
size(datestr(d, 2))
size(ds)
Do the number of elements match?
  4 commentaires
Theodore
Theodore le 9 Juil 2013
Sorry about that! I haven't properly pasted code into here before so I'm hoping this works better:
dbstop if error
source_dir = '/Users/student/Documents/MATLAB/RAWS Station Data'; % Source directory
dest_dir = '/Users/student/Documents/MATLAB/RAWS Results'; % Result Destination directory
source_files = dir(fullfile(source_dir, '*.xls')); %Locates all .xls files
n=length(source_files); %total length of RAWS files to be used in loop
i=n; % defines variable 'i' for for loop
for i=1:n
if i <= n
a = xlsread(source_files(i).name);
d = a(:,1);
ds(i) = datestr(d,2); %Converts numeric Matlab code for dates back into original format
end
end
It's telling me that:
Error in Run (line 29) n=length(data) %total length of avg mean/max/min temps
So line 9 of the pasted code above starting at n=length(source_files). All lines above that in my Matlab script are just comments
Jan
Jan le 10 Juil 2013
Now we see, that there is an error in the "line 29: n=length(data)", but what is the error message? And This line does not occur in the posted code.
It is not useful to declare the variable used as a loop counter before:
%Omit this: i=n; % defines variable 'i' for for loop
for i = 1:n
...
Inside the loop, i goes from 1 to n, so you do not have to check "if i <= n".

Connectez-vous pour commenter.

Plus de réponses (1)

Evan
Evan le 3 Juil 2013
Modifié(e) : Evan le 3 Juil 2013
Is this any better?
source_dir = '/Users/student/Documents/MATLAB/RAWS Station Data';
dest_dir = '/Users/student/Documents/MATLAB/RAWS Results';
source_files = dir(fullfile(source_dir, '*.xls'));
n=length(source_files);
for i=1:n
a = xlsread(source_files(i).name);
d = a(:,1);
ds(i) = datestr(d,2);
end
Your problem looks to be caused by the fact that source_files is an nx1 struct, where n is the number of .xlsx files in your directory. To read in each .xlsx file one at a time, you have to loop through that struct, accessing its "name" field in your call to xlsread.
  5 commentaires
Evan
Evan le 3 Juil 2013
Hmmm. Interesting. Just out of curiosity, is this a script or a function? If it's just a script, are you calling clear before running again?
Theodore
Theodore le 3 Juil 2013
Modifié(e) : Theodore le 3 Juil 2013
Its in a script since I'll need to add more to my for loop eventually. I've called clear and clearvars and it still produces the same result. I'm just trying to get it to create a ds(1) vector, ds(2) vector, ds(3), etc.
Subscripted assignment dimension mismatch.
Error in Run (line 36)
ds(i,:) = datestr(d,2);

Connectez-vous pour commenter.

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by