


Pattern Recognition for Neuroimaging Toolbox, PRoNTo. PRT configuration file This builds the whole tree for the various tools and their GUI. _______________________________________________________________________ Copyright (C) 2011 Machine Learning & Neuroimaging Laboratory


0001 function prt = prt_cfg_batch 0002 % Pattern Recognition for Neuroimaging Toolbox, PRoNTo. 0003 % PRT configuration file 0004 % This builds the whole tree for the various tools and their GUI. 0005 %_______________________________________________________________________ 0006 % Copyright (C) 2011 Machine Learning & Neuroimaging Laboratory 0007 0008 % Written by Christophe Phillips 0009 % $Id$ 0010 0011 % NOTE: 0012 % Only de-comment the following line if 0013 % - PRT is installed in SPM8/12 toolbox directory, for example 0014 % SPM12\toolbox\PRoNTo 0015 % - and this directory isn't saved on Matlab path (which it shouldn't) 0016 % 0017 % if ~isdeployed, addpath(fullfile(spm('Dir'),'toolbox','PRoNTo')); end 0018 0019 % --------------------------------------------------------------------- 0020 %% prt PRoNTo series of modules 0021 % --------------------------------------------------------------------- 0022 prt = cfg_choice; 0023 prt.tag = 'prt'; 0024 prt.name = 'PRoNTo'; 0025 prt.help = {[... 0026 'This is the batch interface for PRoNTo, i.e. Pattern Recognition '... 0027 'for Neuroimaging Toolbox providing a GUI for the various tools.'] 0028 }'; 0029 prt.values = {prt_cfg_design, ... 0030 prt_cfg_fs, ... 0031 prt_cfg_model, ... 0032 prt_cfg_cv_model,... 0033 prt_cfg_weights}; 0034 %------------------------------------------------------------------------ 0035 0036 return