Handles
0001 function ltpdv_pzmStoreResp(varargin) 0002 0003 % Handles 0004 myh = varargin{1}; 0005 htab = varargin{end-1}; 0006 mainfig = varargin{end}; 0007 0008 % Get pzmodel 0009 pzm = ltpdv_filter_get_pzmodel(mainfig); 0010 0011 % Add to objects 0012 objs = getappdata(mainfig, 'LTPDAobjects'); 0013 objs = [objs {resp(pzm)}]; 0014 setappdata(mainfig, 'LTPDAobjects', objs); 0015 0016 % Refresh object list 0017 ltpdv_refresh_object_list(mainfig);