Mercurial > hg > ltpda
view m-toolbox/m/gui/ltpdv/callbacks/ltpdv_spectral_fcnlist.m @ 51:9d5c88356247 database-connection-manager
Make unit tests database connection parameters configurable
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 07 Dec 2011 17:24:37 +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);