view m-toolbox/classes/@LTPDAworkbench/executeReadyBlocks.m @ 14:6d43f39633b8
database-connection-manager
Remove unused functions from utils.jmysql
author |
Daniele Nicolodi <nicolodi@science.unitn.it> |
date |
Mon, 05 Dec 2011 16:20:06 +0100 (2011-12-05) |
parents |
f0afece42f48 |
children |
|
line source
% EXECUTEREADYBLOCKS executes the current ready blocks.
%
% CALL: wb.executeReadyBlocks
% cmds = wb.executeReadyBlocks % returns a cell-array of executed
% % commands
%
% M Hewitson 13-11-08
%
% $Id: executeReadyBlocks.m,v 1.7 2010/08/06 19:10:49 ingo Exp $
%
function varargout = executeReadyBlocks(wb)
[cmds, rbs] = wb.parseReadyBlocks();
LTPDAworkbench.executeCommands(wb, cmds);
if nargout > 0
varargout{1} = cmds;
varargout{2} = rbs;
end
end