Home > functions > job > job_view_leadfield_dir > job_view_lf_change_modeltype.m

job_view_lf_change_modeltype

PURPOSE ^

Change display brain model type.

SYNOPSIS ^

function job_view_lf_change_modeltype(inst_id)

DESCRIPTION ^

 Change display brain model type.

 --- Input    
 inst_id: instance id of this application

 --- History
 2009-01-27 Taku Yoshioka

 Copyright (C) 2011, ATR All Rights Reserved.
 License : New BSD License(see VBMEG_LICENSE.txt)

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function job_view_lf_change_modeltype(inst_id)
0002 % Change display brain model type.
0003 %
0004 % --- Input
0005 % inst_id: instance id of this application
0006 %
0007 % --- History
0008 % 2009-01-27 Taku Yoshioka
0009 %
0010 % Copyright (C) 2011, ATR All Rights Reserved.
0011 % License : New BSD License(see VBMEG_LICENSE.txt)
0012 
0013 global vbmeg_inst;
0014 
0015 % Turn of both radio buttons
0016 set(vbmeg_inst.viewlf{inst_id}.rb1,'Value',0);
0017 set(vbmeg_inst.viewlf{inst_id}.rb2,'Value',0);
0018 
0019 % set clicked button 'on'
0020 set(gcbo,'Value',1);
0021 drawnow;
0022 
0023 % update view
0024 job_view_lf_update_cortexpattern(inst_id);

Generated on Tue 27-Aug-2013 11:46:04 by m2html © 2005