📄 aft_filetype.m
字号:
function ftype = aft_Filetype(hfile)
% AFT::FileType - method for any BVQXfile type
%
% FORMAT: filetype = obj.Filetype;
%
% No input fields:
%
% Output fields:
%
% filetype type of object
% Version: v0.7b
% Build: 7082922
% Date: Aug-29 2007, 10:37 PM CEST
% Author: Jochen Weber, Brain Innovation, B.V., Maastricht, NL
% URL/Info: http://wiki.brainvoyager.com/BVQXtools
% only valid for single file
if nargin < 1 || ...
numel(hfile) ~= 1 || ...
~isBVQXfile(hfile, true)
error( ...
'BVQXfile:BadArgument', ...
'Invalid call to %s.', ...
mfilename ...
);
end
% get file type
try
sc = bvqxfile_getscont(hfile.L);
ftype = sc.S.Extensions{1};
catch
ftype = 'BAD';
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -