function run_all(fns) %RUN_ALL runs all functions in a cell array, requesting no return values % %In Matlab this can be done with cellfun, but it's a bit messy and there are %compatibility problems with at least some versions of Octave. for ii = 1:numel(fns) fns{ii}(); end