Specification of a multiple regression design The tree below is incomplete (FB) -jobs \-jobs{1} \-stats \-stats{1} \-factorial_design |-des | \-mreg | \-scans ............ {} | \-incint ........... 1 (include the intercept?) | \-mcov | \-c .............. [] | \-cname .......... '' | \-iCC ............ 1 (1: center on overall mean, 0:don't) | |-masking | |-tm | | \-tm_none ........... [] | |-im ................ 1-x-1 double | \-em | \-em{1} ............. [] |-globalc | \-g_omit ............ [] |-globalm | |-gmsca | | \-gmsca_no .......... [] | \-glonorm ........... 1-x-1 double \-dir ............... <UNDEFINED> -jobs \-stats FB <fbarrett@ucdavis.edu> 2012.02.29 - based on fd_ff.m
0001 function [jobs] = fd_mreg 0002 % Specification of a multiple regression design 0003 % The tree below is incomplete (FB) 0004 % -jobs 0005 % \-jobs{1} 0006 % \-stats 0007 % \-stats{1} 0008 % \-factorial_design 0009 % |-des 0010 % | \-mreg 0011 % | \-scans ............ {} 0012 % | \-incint ........... 1 (include the intercept?) 0013 % | \-mcov 0014 % | \-c .............. [] 0015 % | \-cname .......... '' 0016 % | \-iCC ............ 1 (1: center on overall mean, 0:don't) 0017 % | 0018 % |-masking 0019 % | |-tm 0020 % | | \-tm_none ........... [] 0021 % | |-im ................ 1-x-1 double 0022 % | \-em 0023 % | \-em{1} ............. [] 0024 % |-globalc 0025 % | \-g_omit ............ [] 0026 % |-globalm 0027 % | |-gmsca 0028 % | | \-gmsca_no .......... [] 0029 % | \-glonorm ........... 1-x-1 double 0030 % \-dir ............... <UNDEFINED> 0031 % -jobs 0032 % \-stats 0033 % 0034 % FB <fbarrett@ucdavis.edu> 2012.02.29 - based on fd_ff.m 0035 0036 % Factorial design 0037 jobs{1}.stats{1}.factorial_design.des.mreg = struct(... 0038 'scans','<UNDEFINED>', ... 0039 'incint',1, ... 0040 'mcov',struct('c',[],... 0041 'cname','',... 0042 'iCC',1)); 0043 0044 % Covariates 0045 jobs{1}.stats{1}.factorial_design.cov = struct([]); 0046 0047 % Masking 0048 jobs{1}.stats{1}.factorial_design.masking.tm.tm_none = ... 0049 reshape(double([]),[0,0]); 0050 jobs{1}.stats{1}.factorial_design.masking.im = reshape(double(1),[1,1]); 0051 jobs{1}.stats{1}.factorial_design.masking.em{1} = char(''); 0052 0053 jobs{1}.stats{1}.factorial_design.globalc.g_omit = reshape(double([]),[0,0]); 0054 jobs{1}.stats{1}.factorial_design.globalm.gmsca.gmsca_no = reshape(double([]),[0,0]); 0055 jobs{1}.stats{1}.factorial_design.globalm.glonorm = reshape(double(1),[1,1]); 0056 jobs{1}.stats{1}.factorial_design.dir = char('<UNDEFINED>');