291ee33de61fc5cd44c4afa4a86ca3bc077532b8
Christoph Budziszewski GUI parsing halfway done.

Christoph Budziszewski authored 15 years ago

1) function voxelList = parseVoxelList(model)
2)         voxelList = [];
3) 
4)         %<ROI Name>,<ROI Modifier>;
5)         txt = get(model.txtVoxelDef,'String');
6)         map = model.subjectMap;
7)         SubjectID = getSubjectIDString(model);
8)         
Christoph Budziszewski killed unnecessary assignin...

Christoph Budziszewski authored 15 years ago

9) %         assignin('base','txt',txt);
Christoph Budziszewski GUI parsing halfway done.

Christoph Budziszewski authored 15 years ago

10)         
11)         rows  = size(txt,1);
12)         
13)         for i = 1:rows 
Christoph Budziszewski fixed: parseVoxelList empty...

Christoph Budziszewski authored 15 years ago

14)             if all(isspace(txt(i,:)))
15)                 continue;
16)             end