Looping through folders and perform script

2 views (last 30 days)
PAK
PAK on 30 Aug 2018
Commented: PAK on 17 Oct 2018
Hi All,
I have data that is in 3 subdirectories "LFP", "Pos", and "Neg". Each folder has the same number of .mat files in it, say 8 for this example. I have an analysis script that I have written that works. Now I would like to loop through all the files in each of the folders and run the analysis and save the output.
It would look something like:
load Pos/times_NS6_001.mat
load LFP/NS3.001.mat
% perform body of script %
% then save output %
savename = fullfile(char(strcat('Phase_Locking_','NS6_001','NS3_001')));
save(savename,'polarhistograms', 'pval', 'z');
Then I would loop through and do the same for Pos/times_NS6_00(2-8) and LFP/NS3.00(2-8). After this it would be the same for Neg/times_NS6_00(1-8) and LFP/NS3.00(1-8).
I need to basically test every file in the LFP folder with every file in both the "Pos" and "Neg" folders (all combinations).
Any help on what to add to my code to get this done in an efficient way would be much appreciated!
PAK
  3 Comments
PAK
PAK on 12 Sep 2018
Hi Rik,
I'm still working through this code, got a little bit busy with another project. I will reply once I figure it out.
Thanks for your comment and followup!
PAK
PAK
PAK on 17 Oct 2018
This worked perfectly! Thank you so much!
PAK

Sign in to comment.

Accepted Answer

Rik
Rik on 30 Aug 2018
Edited: Rik on 31 Aug 2018
  1. Use a dir call to figure out the number of suffixes (or suffices?)
  2. Use two nested loops to determine the selection of your .mat files. You could even use the output by dir directly as you for loop array (just transpose the struct).
pos_files=dir('Pos/times_*.mat');
neg_files=dir('Neg/times_*.mat');
lfp_files=dir('LFP/NS3.*.mat');
for pos_or_neg=[pos_files;neg_files]'
load([pos_or_neg.folder filesep pos_or_neg.name])
for current_lfp=lfp_files'
load([current_lfp.folder filesep current_lfp.name])
% perform body of script %
% then save output %
savename = %you can use the name fields for naming%
save(savename,'polarhistograms', 'pval', 'z');
end
end
  2 Comments
Stephen23
Stephen23 on 31 Aug 2018
@Rik Wisselink: you missed some relevant parts of the question: "Each folder has the same number of .mat files in it, say 8 for this example" and "Then I would loop through and do the same for Pos/times_NS6_00(2-8) and LFP/NS3.00(2-8)": so the number of files can vary, and thus hard-coding NS6_001 and NS3_001 is not going to help.
Rik
Rik on 31 Aug 2018
@Stephen As it wasn't clear to me what the naming scheme should be (as it would overlap between pos and neg), I left that line as it was. I now removed that to avoid confusion.

Sign in to comment.

More Answers (0)

Categories

Find more on Function Creation in Help Center and File Exchange

Products


Release

R2018a

Community Treasure Hunt

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

Start Hunting!