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
files = splitstring(dir,endl); | |
for(i=1:length(files)) { | |
if (findstring(files{i},"fsp") != -1) { | |
if (fileexists(files{i})) { | |
?files{i}; # displays the filename to confirm | |
load(files{i}); | |
addjob(files{i}); | |
# alternatively, this code can also be used to run |