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

📄 bvqxfigurecallback.m

📁 toolbox of BVQX, This is the access between BV and matlab. It will help you to analysis data from BV
💻 M
字号:
function BVQXfigureCallback(cbstr, fig, cbo, setparent)
% BVQXfigure::docallback  - make sure a callback has its own workspace
%
% Since this callback is only for internal use of the BVQXfigure class
% it must not be used directly!
%
% See also @BVQXfigure

% Version:      v0.7b
% Build:        7090411
% Date:         Sep-04 2007, 11:05 AM CEST
% Author:       Jochen Weber, Brain Innovation, B.V., Maastricht, NL
% URL / Info:   http://wiki.brainvoyager.com/BVQXtools

% set references
try
    this = BVQXfigure(cbo);
    if ~isBVQXfigure(this, true)
        error('INVALID_HANDLE');
    end
    gcf  = fig;
    gcbf = fig;
    gcbo = cbo;
    
    % set parent?
    if nargin > 3 && ...
       ~isempty(setparent)
        parent = BVQXfigure(get(gcbo, 'Parent'));
        thisfig = BVQXfigure(gcf);
    end

    % evaluate callback
    eval(cbstr);
catch
    warning( ...
        'BVQXfigure:BadHandle', ...
        'Callback of handle failed.' ...
    );
end

⌨️ 快捷键说明

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