📄 mesh_fit_elec_optim.m
字号:
function [sumD] = mesh_fit_elec_optim(SUMD,scalp,elec)
% MESH_FIT_ELEC_OPTIM - optimise the fitting of electrodes to scalp vertices
%
% This function is in development. It needs rotations and
% translations of elec vertices to fit those of the scalp
% vertices and a minimisation function for the difference
% between the vertex locations of the nearest scalp vertices
% and those of the electrodes.
% $Revision: 1.2 $ $Date: 2003/03/02 03:20:44 $
% Licence: GNU GPL, no implied or express warranties
% History: 09/2002, Darren.Weber@flinders.edu.au
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
fprintf('Still in development\n'); return
% Rotations/translations/scaling here???
[k,d] = dsearchn(scalp,elec);
sumD = sum(d) - SUMD;
return
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -