git.schokokeks.org
Repositories
Help
Report an Issue
SVMCrossVal.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
c165536
Branches
Tags
master
SVMCrossVal.git
spm_SVMCrossVal.m
works with toolbox
Christoph Budziszewski
commited
c165536
at 2009-05-22 11:27:08
spm_SVMCrossVal.m
Blame
History
Raw
function spm_SVMCrossVal(varargin) defineGlobals(); global SVMCROSSVAL_SPMDIR; global SVMCROSSVAL_SPMVERSION; global SVMCROSSVAL_TOOLBOXPATH; global SVMCROSSVAL_DEBUG; % SPMDIR = 'D:\SPM\spm5human' SVMCROSSVAL_SPMDIR = 'D:\SPM\spm2'; SVMCROSSVAL_SPMVERSION = 'SPM2'; % SVMCROSSVAL_TOOLBOXPATH = fullfile('C:\Dokumente und Einstellungen\Christoph\Eigene Dateien\MATLAB\spmtoolbox\SVMCrossVal\',''); SVMCROSSVAL_TOOLBOXPATH = fullfile(SVMCROSSVAL_SPMDIR,'toolbox','SVMCrossVal'); switch nargin case 0 SVMCROSSVAL_DEBUG = 0; ui_main(); case 1 SVMCROSSVAL_DEBUG = varargin(1); ui_main(); otherwise error('spm_SVMCrossVal:main','wrong nargin'); end end