closebar.m

来自「toolbox of BVQX, This is the access betw」· M 代码 · 共 28 行

M
28
字号
function closebar(p)
% BVQXprogress::closebar  - close shortcut
%
% FORMAT:       closebar(pbar)
%
% Input fields:
%
%       pbar        BVQXprogress object

% Version:  v0.7a
% Build:    7081610
% Date:     Aug-16 2007, 10:17 AM CEST
% Author:   Jochen Weber, Brain Innovation, B.V., Maastricht, NL
% URL/Info: http://wiki.brainvoyager.com/BVQXtools

% argument check
if nargin < 1 || ...
    numel(p) ~= 1 || ...
   ~strcmpi(class(p), 'bvqxprogress')
    error( ...
        'BVQXprogress:BadCall', ...
        'Invalid call to closebar.' ...
    );
end

% issue call
BVQXprogress(p, 'close', []);

⌨️ 快捷键说明

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