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

📄 dmr_loaddwi.m

📁 toolbox of BVQX, This is the access between BV and matlab. It will help you to analysis data from BV
💻 M
字号:
function hfile = dmr_LoadDWI(hfile)
% DMR::LoadDWI  - load linked DWI data of a DMR into memory
%
% FORMAT:       [dmr] = dmr.LoadDWI;
%
% No input / output fields.

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

% try loading the DWI
bc = bvqxfile_getcont(hfile.L);
if istransio(bc.DWIData)
    try
        bc.DWIData = bc.DWIData(:, :, :, :);
    catch
        error( ...
            'BVQXfile:transioError', ...
            'Error resolving transio access.' ...
        );
    end
    bvqxfile_setcont(hfile.L, bc);
end

⌨️ 快捷键说明

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