view m-toolbox/m/gui/gltpda/g_poleEdit.m @ 10:75007001cbfe database-connection-manager

Check for binary only objects
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Mon, 05 Dec 2011 16:20:06 +0100
parents f0afece42f48
children
line wrap: on
line source

function g_poleEdit(hObject, varargin)
   
   global params
   
   currParamIndex = get(hObject,'UserData');
   poles          = get(hObject,'String');
   poles          = readInput(poles,2);
   [xx,yy]  = size(poles);
   poleList = pz();
   for kk=1:xx
      if (yy>1 && poles(kk,2)==0) || yy==1 , poleList(kk) = pz(poles(kk,1));
      else poleList(kk) = pz(poles(kk,1),poles(kk,2));
      end
   end
   params = pset(params,params.params(currParamIndex).key,poleList);
   set(findobj('Tag','apply'),'Enable','on');
   set(findobj('Tag','undo'),'Enable','on');
   
end