c54095b9ccdbc0ca2c1a01b6f81cf5f77ae15007
Christoph Budziszewski project chooser: close window

Christoph Budziszewski authored 15 years ago

1) function spm_SVMCrossVal(varargin)
Christoph Budziszewski using global variables now....

Christoph Budziszewski authored 15 years ago

2) 
3) %define global constants
Christoph Budziszewski refactored to arg-structs!...

Christoph Budziszewski authored 15 years ago

4) global USE_DRIVE_CHECK_HACK;
5) USE_DRIVE_CHECK_HACK = 1;  %enables subroutine to check if image path starts with 'D'
Christoph Budziszewski using global variables now....

Christoph Budziszewski authored 15 years ago

6) 
Christoph Budziszewski refactored to arg-structs!...

Christoph Budziszewski authored 15 years ago

7) global CROSSVAL_METHOD_DEF;
Christoph Budziszewski using global variables now....

Christoph Budziszewski authored 15 years ago

8) CROSSVAL_METHOD_DEF.svmcrossval       = 'svm crossval';
9) CROSSVAL_METHOD_DEF.classPerformance  = 'svm class performance';
Christoph Budziszewski refactored to arg-structs!...

Christoph Budziszewski authored 15 years ago

10) CROSSVAL_METHOD_DEF.crossSubject      = 'svm across subject testing';
Christoph Budziszewski using global variables now....

Christoph Budziszewski authored 15 years ago

11) CROSSVAL_METHOD_DEF.somTraining       = 'som Training';
12) 
Christoph Budziszewski refactored to arg-structs!...

Christoph Budziszewski authored 15 years ago

13) global VOXEL_SELECTION_MODE_DEF;
14) VOXEL_SELECTION_MODE_DEF.manualGui    = 'manually defined in GUI';
15) VOXEL_SELECTION_MODE_DEF.roiImage     = 'use ROI image and popup image selector';
16) 
Christoph Budziszewski project chooser: close window

Christoph Budziszewski authored 15 years ago

17) switch nargin
18) case 0
Christoph Budziszewski moving things to private, s...

Christoph Budziszewski authored 15 years ago

19) % 	project_UI;
20) 	main_UI(varargin);
Christoph Budziszewski project chooser: close window

Christoph Budziszewski authored 15 years ago

21) case 1
22) 	main_UI(varargin);
23) otherwise
24) error('spm_SVMCrossVal:main','wrong nargin');
25) end
26) end
27) 
Christoph Budziszewski gui layout finished

Christoph Budziszewski authored 15 years ago

28)