Handles
0001 function ltpdv_explore_objects(varargin) 0002 0003 % Handles 0004 myh = varargin{1}; 0005 mainfig = varargin{end}; 0006 0007 0008 % Get selected objects 0009 objs = ltpdv_get_selected_objs(mainfig); 0010 0011 % Pass to ltpda_explorer 0012 ltpda_explorer(objs) 0013 0014 % END