Home > m > gui > ltpdv > callbacks > ltpdv_preproc_fcnlist.m

ltpdv_preproc_fcnlist

PURPOSE ^

Handles

SYNOPSIS ^

function ltpdv_preproc_fcnlist(varargin)

DESCRIPTION ^

 Handles

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function ltpdv_preproc_fcnlist(varargin)
0002 
0003 % Handles
0004 myh     = varargin{1};
0005 paramh  = varargin{end-1};
0006 mainfig = varargin{end};
0007 
0008 % Get the selected method
0009 lidx = get(myh, 'Value');
0010 lstr = get(myh, 'String');
0011 fcn  = lstr{lidx};
0012 
0013 % Get parameters for this method
0014 ii = ao.getInfo(fcn); 
0015 
0016 % Build params panel
0017 if numel(ii.plists) == 1
0018   ltpdv_build_params_panel(paramh, ii.plists);
0019 else
0020   ltpdv_build_params_panel(paramh, ii);
0021 end
0022 
0023 
0024

Generated on Mon 08-Sep-2008 13:18:47 by m2html © 2003