Home > functions > job > job_edit_act_dir > job_edit_act_show_loaded_files.m

job_edit_act_show_loaded_files

PURPOSE ^

Show loaded files

SYNOPSIS ^

function job_edit_act_show_loaded_files(inst_id)

DESCRIPTION ^

 Show loaded files 

 --- Syntax
 function job_edit_act_show_loaded_files(inst_id)

 --- History
 2008-09-04 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_edit_act_show_loaded_files(inst_id)
0002 % Show loaded files
0003 %
0004 % --- Syntax
0005 % function job_edit_act_show_loaded_files(inst_id)
0006 %
0007 % --- History
0008 % 2008-09-04 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 str = sprintf(['Cortical surface model file: %s \n' ...
0016                'Activity map file          : %s'], ...
0017               vbmeg_inst.editact{inst_id}.brainfile, ...
0018               vbmeg_inst.editact{inst_id}.actfile);
0019 h = msgbox(str,'Loaded files');
0020 
0021 %h = get(h,'Children');
0022 %hh = get(h(1),'Children');
0023 %set(hh(1),'FontName','Helvetica');
0024 %set(hh(1),'FontSize',13.5);

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