843767743284585643d14019ffb949a0fa84952e
Christoph Budziszewski multi-subject support

Christoph Budziszewski authored 15 years ago

1) function voxelList = parseVoxelList(model,multisubjectid)
Christoph Budziszewski GUI parsing halfway done.

Christoph Budziszewski authored 15 years ago

2)         voxelList = [];
3) 
4)         %<ROI Name>,<ROI Modifier>;
5)         txt = get(model.txtVoxelDef,'String');
6)         map = model.subjectMap;
Christoph Budziszewski multi-subject support

Christoph Budziszewski authored 15 years ago

7) 
8)         switch nargin
9)             case 1
10)                 SubjectID = getSubjectIDString(model);
11)             case 2
12)                 SubjectID = multisubjectid;
13)             otherwise
14)                 error('spmtoolbox:SVMCrossVal:parseVoxelList:nargin','wrong number of arguments given');
15)         end
16)          
Christoph Budziszewski GUI parsing halfway done.

Christoph Budziszewski authored 15 years ago

17)         rows  = size(txt,1);
18)         
19)         for i = 1:rows 
Christoph Budziszewski fixed: parseVoxelList empty...

Christoph Budziszewski authored 15 years ago

20)             if all(isspace(txt(i,:)))
21)                 continue;
22)             end