Home > functions > default_param > vb_define_mode.m

vb_define_mode

PURPOSE ^

SYNOPSIS ^

function define = vb_define_mode(define)

DESCRIPTION ^

 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    define = vb_define_mode(define)
0002 %
0003 % Copyright (C) 2011, ATR All Rights Reserved.
0004 % License : New BSD License(see VBMEG_LICENSE.txt)
0005 
0006 % Leadfield calculation mode (bem_mode)
0007 define.BASIS_MEG_SPHERE    = 0;  %  MEG (Sphere model:Sarvas)
0008 define.BASIS_MEG_BEM       = 1;  %  MEG (BEM)
0009 define.BASIS_MEG_HARMONICS = 2;  %  MEG (Spherical Harmonics)
0010 define.BASIS_EEG_SPHERE    = 3;  %  EEG (Sphere model)
0011 define.BASIS_EEG_BEM       = 4;  %  EEG (BEM)
0012 
0013 % Current degree of freedom (Basis_mode)
0014 define.CURRENT_NORMAL  = 1;  %  normal to cortex
0015 define.CURRENT_TANGENT = 2;  %  tangent vectors
0016 define.CURRENT_3D       = 3;  %  x, y, z -direction
0017 
0018 % Average mode for normal direction
0019 define.NORMAL_ADJACENT_MEAN  = 0;  % 隣接点の法線平均
0020 define.NORMAL_NEIGHBOR_MEAN  = 1;  % BV脳モデル近傍点の法線平均
0021 
0022 % Job mode
0023 define.PRE_ANALYSIS_MODE = 1;    % 前処理モード
0024 define.WIENER_MODE = 2;        % Wiener推定モード
0025 define.BAYES_MODE = 3;        % Bayes推定モード
0026   
0027 define.BAYES_NOISE_REG_EDIT = 1;    % Bayes推定のGUIでNoise_regを編集
0028 define.BAYES_RFILT_EDIT = 2;        % Bayes推定のGUIでRfiltを編集
0029 
0030 % Noise model
0031 define.SCALAR_NOISE = 1;
0032 define.DIAGONAL_NOISE = 2;
0033 define.FULL_COVARIANCE_NOISE = 3;
0034 
0035 % MEG - remove bias
0036 define.REMOVE_BIAS_OFF        = 0;
0037 define.REMOVE_BIAS_PRETRIGGER = 1;
0038 define.REMOVE_BIAS_LINEAR     = 2;
0039 
0040 %---------- Old
0041 % for Basis_mode
0042 define.DIPOLE_POSITION = 1;
0043 define.DIPOLE_CURRENT_DIRECTION = 2;
0044 
0045 %for Normal_mode
0046 define.NORM_VECT_AT_VERT = 0;
0047 define.MEAN_PATCH_NORM_VECT = 1;
0048 define.MEAN_PATCH_NORM_VECT_WITH_AREA_WEIGHT = 2;
0049 define.MEAN_NORM_VECT_NEXT_NEIGHBO = 3;
0050

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