Home > functions > template > vb_set_sbi_meg_parm.m

vb_set_sbi_meg_parm

PURPOSE ^

Set parameters for MEG

SYNOPSIS ^

function meg_parm = vb_set_sbi_meg_parm

DESCRIPTION ^

 Set parameters for MEG
   meg_parm = vb_set_sbi_meg_parm

 2005-12-22 Masa-aki Sato


 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 meg_parm = vb_set_sbi_meg_parm
0002 % Set parameters for MEG
0003 %   meg_parm = vb_set_sbi_meg_parm
0004 %
0005 % 2005-12-22 Masa-aki Sato
0006 %
0007 %
0008 % Copyright (C) 2011, ATR All Rights Reserved.
0009 % License : New BSD License(see VBMEG_LICENSE.txt)
0010 
0011 %
0012 % --- Standard parameters
0013 %
0014 
0015 meg_parm = vb_meg_parm_set_measurement([], 'MEG', 'SBI');
0016 
0017 %
0018 % Input file
0019 %
0020 
0021 % SBI-MEG file (.meg)
0022 meg_parm.sbi_file = [];
0023 
0024 % MRI image file (.tbl )
0025 meg_parm.dicom_dir  = [];
0026 meg_parm.dicom_file = [];
0027 
0028 % ANALYZE file
0029 meg_parm.analyze_file = []; 
0030 
0031 %
0032 % Output file
0033 %
0034 
0035 % MEG file (.meg.mat)
0036 meg_parm.meg_file = [];
0037 
0038 
0039 
0040 
0041 %
0042 % --- Advanced parameters
0043 %     Optional parameter
0044 %  Do not change, unless you understand the meaning of the parameters!!
0045 %
0046 
0047 % Positioning flag
0048 meg_parm.Pos_chk = 1;
0049 %     If 0, sensor position will not be converted to the DICOM coordinate.
0050 %     This option may be useful if you want to get MEG data without subject.
0051 
0052 % Set of trial numbers to read.
0053 meg_parm.trials  = [];
0054 
0055 % Time window to read.
0056 meg_parm.time_win = [];     
0057 % [Tstart Tend]: [ms]
0058 
0059 % EEG channel name to read
0060 % meg_parm.eeg_name =  [13:14];
0061 %                   = {'AT3'; 'AT4'} : vertical/horizontal eye movement
0062 
0063 % Two way of specification
0064 %   1. specify channel number to read
0065 %meg_parm.eeg_name = [1:4];
0066 %   2. specify channel name to read
0067 %meg_parm.eeg_name = {'AFP1'; 'AFP2'; 'AF3'; 'AF4'};

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