IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
guide_figs.m
Go to the documentation of this file.
1 %> @file
2 %>@ingroup misc ioio
3 %>@brief Opens all @c .fig files in directory in GUIDE
4 d = dir('*.fig')
5 for i = 1:length(d)
6  guide(d(i).name);
7 end;