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

📄 fmr_loadstc.m

📁 toolbox of BVQX, This is the access between BV and matlab. It will help you to analysis data from BV
💻 M
字号:
function hfile = fmr_LoadSTC(hfile)
% FMR::LoadSTCs  - load transio STC(s) of an FMR into memory
%
% FORMAT:       fmr.LoadSTCs;
%
% No input/output fields.

% Version:  v0.7b
% Build:    7083115
% Date:     Aug-31 2007, 3:21 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, 'fmr')
    error( ...
        'BVQXfile:BadArgument', ...
        'Invalid call to %s.', ...
        mfilename ...
    );
end

% try to load transio objects
bc = bvqxfile_getcont(hfile.L);
dtsf = bc.DataStorageFormat;
for sc = 1:numel(bc.Slice)
    if istransio(bc.Slice(sc).STCData)
        try
            if dtsf == 1
                bc.Slice(sc).STCData = bc.Slice(sc).STCData(:, :, :);
            else
                bc.Slice(sc).STCData = bc.Slice(sc).STCData(:, :, :, :);
            end
        catch
            error( ...
                'BVQXfile:transioError', ...
                'Error resolving transio access.' ...
            );
        end
    end
end

% set back to memory
bvqxfile_setcont(hfile.L, bc);

⌨️ 快捷键说明

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