Home > vbmeg > demo > test_scripts > yokogawa_readfunc > vb_read_yokogawa_system_info.m

vb_read_yokogawa_system_info

PURPOSE ^

system_info : structure of system information

SYNOPSIS ^

function [system_info] = vb_read_yokogawa_system_info(fid)

DESCRIPTION ^

   system_info     : structure of system information
        .version       : hardware version
        .revision      : hardware revision
        .system_id     : system id
        .system_name   : sysmte name
        .model_name    : 
        .channel_count : number of channels
        .comment       :

 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 [system_info] = vb_read_yokogawa_system_info(fid)
0002 %   system_info     : structure of system information
0003 %        .version       : hardware version
0004 %        .revision      : hardware revision
0005 %        .system_id     : system id
0006 %        .system_name   : sysmte name
0007 %        .model_name    :
0008 %        .channel_count : number of channels
0009 %        .comment       :
0010 %
0011 % Copyright (C) 2011, ATR All Rights Reserved.
0012 % License : New BSD License(see VBMEG_LICENSE.txt)
0013 
0014 channel_count = GetMeg160ChannelCountM( fid );
0015 [system_id, ver_meg160, revision, system_name]  =   GetMeg160SystemInfoM( fid );
0016 system_info.version         = ver_meg160;
0017 system_info.revision        = revision;
0018 system_info.system_id       = system_id;
0019 system_info.system_name     = system_name;
0020 system_info.model_name      = [];
0021 system_info.channel_count   = channel_count;
0022 system_info.comment         = [];

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