Looping through files that match a certain pattern is an easy and routine operation for a BASH shell for example:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# matches files/directories with patterns | |
# like NL300/L0.1, NL10/L0.4 etc | |
for i in NL*/L* | |
do | |
cd $i | |
echo $i | |
# do something else | |
cd .. | |
done |
One can mimic this feature from within an Octave or Matlab program by using the command "glob". Here's how:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% matches pattern NL300/L0.1 etc | |
% stores the result in a cell structure | |
dirList = glob("NL*/L*"); | |
% Loop through the elements of the cell | |
for i = 1:length(dirList) | |
dirname = dirList{i,1}; % pick out individual item | |
cd(dirname) % note cd dirname won't work | |
pwd % do whatever you want | |
cd ../../ | |
end |
3 comments:
Great, just what I needed. Thx!
many thanks. much easier than my previous solution.
I like the way you explain it...Thanks for your hard work. I learned a lot from your blog. For loop Matlab
Post a Comment