By using this, you can look the original or inflated brain model with an activity map and/or area data. Usage: job_select_area(brainfile, areafile, actfile, mode) [IN] brainfile : Brain model filename (.brain.mat) areafile : Area data filename (.area.mat) actfile : Activity map file (.act.mat) mode : Display mode (0: original, 1: inflate <Default>) Copyright (C) 2011, ATR All Rights Reserved. License : New BSD License(see VBMEG_LICENSE.txt)
0001 function job_select_area(brainfile,areafile,actfile,mode) 0002 % By using this, you can look the original or inflated brain model 0003 % with an activity map and/or area data. 0004 % Usage: job_select_area(brainfile, areafile, actfile, mode) 0005 % 0006 % [IN] 0007 % brainfile : Brain model filename (.brain.mat) 0008 % areafile : Area data filename (.area.mat) 0009 % actfile : Activity map file (.act.mat) 0010 % mode : Display mode (0: original, 1: inflate <Default>) 0011 % 0012 % Copyright (C) 2011, ATR All Rights Reserved. 0013 % License : New BSD License(see VBMEG_LICENSE.txt) 0014 0015 if nargin<4, mode=1; end; 0016 0017 parm.brainfile = brainfile; 0018 parm.areafile = areafile; 0019 parm.actfile = actfile; 0020 parm.mode = mode; 0021 plot_parm = vb_set_plot_parm; 0022 vb_select_area(parm, plot_parm);