Mercurial > hg > ltpda
view m-toolbox/m/gui/gltpda/g_poleEdit.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
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