Home > fmri > fsl > create_con.m

create_con

PURPOSE ^

con=create_con(mode);

SYNOPSIS ^

function con=create_con(mode)

DESCRIPTION ^

 con=create_con(mode);

 Creates a contrast structure for specification of FEAT model

 mode can either be 'orig' or 'real'

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

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=[];

Generated on Wed 20-Sep-2023 04:00:50 by m2html © 2003