comparison m-toolbox/classes/@LTPDAworkbench/cb_display.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 % CB_DISPLAY displays the outputs of the currently selected blocks
2 %
3 % CALL: LTPDAworkbench.cb_display
4 %
5 % M Hewitson 13-11-08
6 %
7 % $Id: cb_display.m,v 1.5 2010/08/06 19:10:48 ingo Exp $
8 %
9 function cb_display(varargin)
10
11 wb = varargin{1};
12
13 % Get all selected blocks
14 sbs = awtinvoke(wb.mp, 'getSelectedBlocks');
15
16 outvars = {};
17 for ii=0:sbs.size()-1
18 block = sbs.get(ii);
19
20 % if this is a MElementWithPorts
21 if isa(block, 'mpipeline.canvas.MElementWithPorts')
22
23 % loop over all outputs
24 outports = block.getOutputs();
25 for kk=0:outports.size()-1
26 op = outports.get(kk);
27 % get variable name
28 outvar = LTPDAworkbench.getWS_VarName(wb.UUID, block, op.getNumber);
29 outvars = [outvars {outvar}];
30 end
31 end
32 end
33
34 % Check if each var exists in the workspace, and then display
35
36 try
37 for kk=1:numel(outvars)
38 evalin('base', outvars{kk});
39 end
40 catch
41 utils.helper.errorDlg('Unable to display selected objects. Has the pipeline been executed?', 'Display block outputs error');
42 end
43
44 end
45