view m-toolbox/m/gui/gltpda/g_poleEdit.m @ 52:daf4eab1a51e database-connection-manager tip

Fix. Default password should be [] not an empty string
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 07 Dec 2011 17:29:47 +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