Home > functions > device > meg > yokogawa > vb_define_yokogawa.m

vb_define_yokogawa

PURPOSE ^

Constant definition file for YOKOGAWA program.

SYNOPSIS ^

function [const] = vb_define_yokogawa

DESCRIPTION ^

 Constant definition file for YOKOGAWA program.

 [history]
   2007-05-11 (Sako) added extension of binary file
   2007-05-23 (Sako) added AD_RANGE_16 (for 16bit support)
   2007-06-01 (Sako) added STANDARD_BIN_DATA_TYPE

 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 [const] = vb_define_yokogawa
0002 % Constant definition file for YOKOGAWA program.
0003 %
0004 % [history]
0005 %   2007-05-11 (Sako) added extension of binary file
0006 %   2007-05-23 (Sako) added AD_RANGE_16 (for 16bit support)
0007 %   2007-06-01 (Sako) added STANDARD_BIN_DATA_TYPE
0008 %
0009 % Copyright (C) 2011, ATR All Rights Reserved.
0010 % License : New BSD License(see VBMEG_LICENSE.txt)
0011 
0012 % extension of binary file
0013 const.EXT_CHANNEL_BIN = 'ch.meg.dat';
0014 const.EXT_TRIAL_BIN   = 'tr.meg.dat';
0015 
0016 % binary data type
0017 const.STANDARD_BIN_DATA_TYPE = 'float64';
0018 % const.STANDARD_BIN_DATA_TYPE = 'float32';
0019 % const.STANDARD_BIN_DATA_TYPE = 'int16';
0020 
0021 % memory block
0022 const.DEFAULT_MEMORY_MAX = 10000000;  % 10M

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