con=create_con(mode); Creates a contrast structure for specification of FEAT model mode can either be 'orig' or 'real'
0001 function con=create_con(mode) 0002 % con=create_con(mode); 0003 % 0004 % Creates a contrast structure for specification of FEAT model 0005 % 0006 % mode can either be 'orig' or 'real' 0007 0008 % 04/22/05 PJ 0009 0010 try mode(1); 0011 catch mode='orig'; 0012 end 0013 0014 con.type = mode; 0015 0016 % Display images for contrast_real 1 0017 con.conpic=1; 0018 0019 % Title for contrast_real 1 0020 con.conname=''; 0021 0022 % Real contrast_real vector 1 0023 % Ultimately has EV elements 0024 con.con_vect=[]; 0025 0026 % F-test 1 element 1 0027 con.ftest=[];