e0049736a9efa9d6879494a634ae811c8daf0e16
Christoph Budziszewski coordTabel works for JZ006

Christoph Budziszewski authored 15 years ago

private/runCoordTable.m  1) function runCoordTable(args)
Christoph Budziszewski zwischenspeicherung

Christoph Budziszewski authored 15 years ago

private/runCoordTable.m  2)     disp('run coord table')
private/runCoordTable.m  3)     
Christoph Budziszewski coordTabel works for JZ006

Christoph Budziszewski authored 15 years ago

private/runCoordTable.m  4)     subjects = args.subjects;
private/runCoordTable.m  5)     nSubjects = size(subjects);
private/runCoordTable.m  6)     sessionlist = args.sessionList;
Christoph Budziszewski subject loop is function

Christoph Budziszewski authored 15 years ago

private/classify.m       7) 
Christoph Budziszewski coordTabel works for JZ006

Christoph Budziszewski authored 15 years ago

private/runCoordTable.m  8)     for s = 1:nSubjects
private/runCoordTable.m  9)         subjectStruct{s}.dir = fullfile(args.basedir,cell2mat(subjects(s)));
private/runCoordTable.m 10)         d = load(fullfile(subjectStruct{s}.dir,'results','SPM.mat'));
private/runCoordTable.m 11)         subjectStruct{s}.des = d.SPM;
private/runCoordTable.m 12)         subjectStruct{s}.name = cell2mat(subjects(s));
Christoph Budziszewski new LabelMap new svm groupi...

Christoph Budziszewski authored 15 years ago

classify.m              13)         
Christoph Budziszewski coordTabel works for JZ006

Christoph Budziszewski authored 15 years ago

private/runCoordTable.m 14)         map = load(fullfile(subjectStruct{s}.dir,'results','roi','coord_map.mat'));
private/runCoordTable.m 15)         subjectStruct{s}.coords = getSubjectCoordinates(args.coords,map);
Christoph Budziszewski SVMCrossVal toolbox init

Christoph Budziszewski authored 15 years ago

classify.m              16)         
Christoph Budziszewski coordTabel works for JZ006

Christoph Budziszewski authored 15 years ago

private/runCoordTable.m 17)         disp('fetching volume definitions, please wait');
private/runCoordTable.m 18)         subjectStruct{s}.volumes = spm_vol(getImageFileList(subjectStruct{s}.dir,sessionlist,args.mask));
Christoph Budziszewski SVMCrossVal toolbox init

Christoph Budziszewski authored 15 years ago

classify.m              19) 
Christoph Budziszewski transport changes

Christoph Budziszewski authored 15 years ago

private/classify.m      20)         
Christoph Budziszewski coordTabel works for JZ006

Christoph Budziszewski authored 15 years ago

private/runCoordTable.m 21)         rawData = calculateImageData(subjectStruct{s}.volumes,subjectStruct{s}.coords)
Christoph Budziszewski transport changes

Christoph Budziszewski authored 15 years ago

private/classify.m      22)         
Christoph Budziszewski coordTabel works for JZ006

Christoph Budziszewski authored 15 years ago

private/runCoordTable.m 23)         disp('done');
private/runCoordTable.m 24)     end
Christoph Budziszewski subject loop is function

Christoph Budziszewski authored 15 years ago

private/classify.m      25) end
private/classify.m      26) 
private/classify.m      27) 
private/classify.m      28) 
Christoph Budziszewski refactored to arg-structs!...

Christoph Budziszewski authored 15 years ago

private/classify.m      29)