⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 getcont.m

📁 toolbox of BVQX, This is the access between BV and matlab. It will help you to analysis data from BV
💻 M
字号:
function bc = getcont(hfile)
% BVQXfile::getcont  - get content struct of object
%
% FORMAT:       content = getcont(obj);
%
% Input fields:
%
%       obj         valid, non-ROOT BVQXfile object
%
% Output fields:
%
%       content     1x1 struct with object's content

% Version:  v0.7b
% Build:    7082920
% Date:     Aug-29 2006, 10:22 PM CEST
% Author:   Jochen Weber, Brain Innovation, B.V., Maastricht, NL
% URL/Info: http://wiki.brainvoyager.com/BVQXtools

% argument check
if nargin ~= 1 || ...
    numel(hfile) ~= 1 || ...
   ~isBVQXfile(hfile, true)
    error( ...
        'BVQXfile:BadArgument', ...
        'Invalid object or mismatching fieldnames.' ...
    );
end

% get content
try
    bc = bvqxfile_getcont(hfile.L);
catch
    rethrow(lasterror);
end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -