tal2acpc.m
来自「toolbox of BVQX, This is the access betw」· M 代码 · 共 35 行
M
35 行
function talc = tal2acpc(talc, tal)
% tal2acpc - convert TAL coordinates into AC-PC coordinates
%
% FORMAT: acpcc = tal2acpc(talc, tal)
%
% Input fields:
%
% talc Cx3 TAL coordinates
% tal either 8x3 TAL coordinates or TAL BVQXfile object
%
% Output fields:
%
% acpcc AC-PC coordinates
%
% Note: this functions simply uses acpc2tal(..., true), so
%
% See also acpc2tal .
% Version: v0.7a
% Build: 7081010
% Date: Aug-10 2007, 10:23 AM CEST
% Author: Jochen Weber, Brain Innovation, B.V., Maastricht, NL
% URL/Info: http://wiki.brainvoyager.com/BVQXtools
% simply try calling acpc2tal
try
talc = acpc2tal(talc, tal, true);
catch
error( ...
'BVQXtools:BadArgument', ...
'Bad argument in call. Error was: ''%s''.', ...
lasterr ...
);
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?