view m-toolbox/classes/@workspaceBrowser/cb_plot.m @ 0:f0afece42f48

Import.
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 23 Nov 2011 19:22:13 +0100
parents
children
line wrap: on
line source

% CB_PLOT plot the selected objects.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
%
% CB_PLOT plot the selected objects.
%
% $Id: cb_plot.m,v 1.2 2009/07/29 07:02:45 hewitson Exp $
%
function cb_plot(varargin)
  
  
  wb = getappdata(0, 'WorkspaceBrowser');
  
  objs = workspaceBrowser.getSelectedObjects(wb);
  
  aos = [];
  for kk=1:numel(objs)
    obj = objs{kk};
    if isa(obj, 'ao')
      aos = [aos obj];
    end
  end
  
  if ~isempty(aos)
    iplot(aos);
  else
    disp('nothing to plot :( ');
  end
  
end