Mercurial > hg > ltpda
comparison m-toolbox/classes/@workspaceBrowser/cb_explore.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_EXPLORE explore the selected objects. | |
2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
3 % | |
4 % CB_EXPLORE explore the selected objects. | |
5 % | |
6 % $Id: cb_explore.m,v 1.2 2010/01/22 15:59:27 ingo Exp $ | |
7 % | |
8 function cb_explore(varargin) | |
9 | |
10 | |
11 wb = getappdata(0, 'WorkspaceBrowser'); | |
12 | |
13 objs = workspaceBrowser.getSelectedObjects(wb); | |
14 | |
15 ltpda_explorer(objs) | |
16 | |
17 % for kk=1:numel(objs) | |
18 % obj = objs{kk}; | |
19 % if isa(obj, 'ltpda_uoh') | |
20 % try | |
21 % dotview(obj.hist, plist('filename', sprintf('temp%d.pdf', kk))); | |
22 % catch | |
23 % plot(obj.hist); | |
24 % end | |
25 % else | |
26 % disp(['can''t plot the history of a ' class(obj)]); | |
27 % end | |
28 % end | |
29 end | |
30 | |
31 | |
32 | |
33 |