Mercurial > hg > ltpda
view m-toolbox/m/gui/gltpda/g_pzmodelLoad.m @ 11:9174aadb93a5 database-connection-manager
Add LTPDA Repository utility functions into utils.repository
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_pzmodelLoad(hObject, varargin) global params currParamIndex = get(hObject,'UserData'); try [FileName,PathName] = uigetfile('*.xml','Select the .XML pzmodel file'); FileAddress = strcat(PathName,FileName); pzObj = pzmodel(FileAddress); if isempty(pzObj), return; end params = pset(params,params.params(currParamIndex).key,pzObj); catch end set(findobj('Tag','apply'),'Enable','on'); set(findobj('Tag','undo'),'Enable','on'); end