view m-toolbox/classes/@workspaceBrowser/cb_explore.m @ 6:2b57573b11c7
database-connection-manager
Add utils.mysql.execute
author |
Daniele Nicolodi <nicolodi@science.unitn.it> |
date |
Mon, 05 Dec 2011 16:20:06 +0100 (2011-12-05) |
parents |
f0afece42f48 |
children |
|
line source
% CB_EXPLORE explore the selected objects.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% CB_EXPLORE explore the selected objects.
%
% $Id: cb_explore.m,v 1.2 2010/01/22 15:59:27 ingo Exp $
%
function cb_explore(varargin)
wb = getappdata(0, 'WorkspaceBrowser');
objs = workspaceBrowser.getSelectedObjects(wb);
ltpda_explorer(objs)
% for kk=1:numel(objs)
% obj = objs{kk};
% if isa(obj, 'ltpda_uoh')
% try
% dotview(obj.hist, plist('filename', sprintf('temp%d.pdf', kk)));
% catch
% plot(obj.hist);
% end
% else
% disp(['can''t plot the history of a ' class(obj)]);
% end
% end
end