Mercurial > hg > ltpda
view m-toolbox/m/gui/ltpdv/callbacks/ltpdv_spectral_fcnlist.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 ltpdv_spectral_fcnlist(varargin) % Handles myh = varargin{1}; paramh = varargin{end-1}; mainfig = varargin{end}; % Get the selected method lidx = get(myh, 'Value'); lstr = get(myh, 'String'); fcn = lstr{lidx}; fcns = ltpdv_spectral_function_list; idx = strcmp(fcn, fcns); idx = find(idx(:,2)); fcn = fcns{idx,1}; % Get parameters for this method if ismethod(ao, fcn) ii = ao.getInfo(fcn); pl = ii.plists(1); else pl = feval(fcn, 'Params'); end % Build params panel ltpdv_build_params_panel(paramh, pl);