Home > vbmeg > functions > plotfunc > check_model > vb_check_fmri.m

vb_check_fmri

PURPOSE ^

Plot fMRI activity on the brain model.

SYNOPSIS ^

function vb_check_fmri(proj_root,fmri_parm)

DESCRIPTION ^

 Plot fMRI activity on the brain model.

 [syntax]
 vb_check_fmri(proj_root,fmri_parm)

 [history]
 2010-08-25 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 vb_check_fmri(proj_root,fmri_parm)
0002 % Plot fMRI activity on the brain model.
0003 %
0004 % [syntax]
0005 % vb_check_fmri(proj_root,fmri_parm)
0006 %
0007 % [history]
0008 % 2010-08-25 Taku Yoshioka
0009 %
0010 % Copyright (C) 2011, ATR All Rights Reserved.
0011 % License : New BSD License(see VBMEG_LICENSE.txt)
0012 
0013 % Filename and fMRI activity ID
0014 % Output file path
0015 if isempty(proj_root)
0016     brain_file = [fmri_parm.brain_file];
0017     act_file   = [fmri_parm.act_file  ];
0018 else
0019     brain_file = [proj_root filesep fmri_parm.brain_file];
0020     act_file   = [proj_root filesep fmri_parm.act_file  ];
0021 end
0022 
0023 vb_act_area_viewer(brain_file, act_file);

Generated on Mon 22-May-2023 06:53:56 by m2html © 2005