comparison m-toolbox/classes/@LTPDAworkbench/executeReadyBlocks.m @ 0:f0afece42f48

Import.
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 23 Nov 2011 19:22:13 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:f0afece42f48
1 % EXECUTEREADYBLOCKS executes the current ready blocks.
2 %
3 % CALL: wb.executeReadyBlocks
4 % cmds = wb.executeReadyBlocks % returns a cell-array of executed
5 % % commands
6 %
7 % M Hewitson 13-11-08
8 %
9 % $Id: executeReadyBlocks.m,v 1.7 2010/08/06 19:10:49 ingo Exp $
10 %
11 function varargout = executeReadyBlocks(wb)
12
13 [cmds, rbs] = wb.parseReadyBlocks();
14
15 LTPDAworkbench.executeCommands(wb, cmds);
16
17 if nargout > 0
18 varargout{1} = cmds;
19 varargout{2} = rbs;
20 end
21
22 end
23