📄 elec_fit_sphere_optim.m
字号:
function [f] = elec_fit_sphere_optim(r, X, Y, Z, xo, yo, zo)
% ELEC_FIT_SPHERE_OPTIM - Optimization for elec_fit_sphere.m
%
% Called from elec_fit_sphere.m
%
% $Revision: 1.2 $ $Date: 2003/03/02 03:20:44 $
% Licence: GNU GPL, no implied or express warranties
% History: 02/2002, Darren.Weber@flinders.edu.au
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% with center (Xo,Yo,Zo) and radius r, the equation of a sphere is:
%
% r^2 = (x-xo)^2 + (y-yo)^2 + (z-zo)^2
%
% This function below creates a scalar value to
% return to the fminsearch function in elec_fit_sphere.
S = (X-xo).^2 + (Y-yo).^2 + (Z-zo).^2 - r^2;
f = sum( S.^2 );
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -