


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: prt_cfg_batch.m 206 2011-10-26 10:09:23Z mjrosa $ 0010 0011 0012 % if ~isdeployed, addpath(fullfile(spm('Dir'),'toolbox','PRoNTo')); end 0013 % Only de-comment the previous line if 0014 % - PRT is installed in SPM8 toolbox directory, for example 0015 % SPM8\toolbox\PRoNTo 0016 % - and this directory isn't saved on Matlab path (which it shouldn't) 0017 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