view m-toolbox/m/gui/ltpdv/callbacks/ltpdv_preproc_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_preproc_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_preproc_function_list;
idx = strcmp(fcn, fcns);
idx = find(idx(:,2));
fcn = fcns{idx,1};

% Get parameters for this method
ii = ao.getInfo(fcn); 

% Build params panel
if numel(ii.plists) == 1
  ltpdv_build_params_panel(paramh, ii.plists);
else
  ltpdv_build_params_panel(paramh, ii);
end