Mercurial > hg > ltpda
diff m-toolbox/sltpda/sltpda_run_model.m @ 0:f0afece42f48
Import.
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 23 Nov 2011 19:22:13 +0100 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/m-toolbox/sltpda/sltpda_run_model.m Wed Nov 23 19:22:13 2011 +0100 @@ -0,0 +1,31 @@ +function sltpda_run_model(mdlfile) + +% SLTPDA_RUN_MODEL verifies, builds, and runs an sLTPDA model +% +% usage: sltpda_run_model(mdlfile) +% +% M Hewitson 28-03-07 +% +% $Id: sltpda_run_model.m,v 1.1 2007/03/30 08:24:36 hewitson Exp $ +% + +% get m filename from mdl file +[path,name,ext, vers] = fileparts(mdlfile); +mfile = [fullfile(path, name) '_mfile']; + +if sltpda_verify_model(mdlfile) + + % parse model file + cmds = sltpda_parse_model(mdlfile); + % evaluate each command + h = waitbar(0,'Executing pipeline...'); + nc = length(cmds); + for j=1:nc + disp(['== executing: ' cmds(j).cmd]); + eval(cmds(j).cmd); + waitbar(j/nc,h) + end + delete(h); +end + +% END \ No newline at end of file