文件名称:最小二乘法椭圆方程拟合
文件大小:10KB
文件格式:M
更新时间:2016-10-07 06:52:25
最小二乘法 椭圆 Matlab源代码
% We will try to fit the best ellipse to the given measurements. the mathematical % representation of use will be the CONIC Equation of the Ellipse which is: % % Ellipse = a*x^2 + b*x*y + c*y^2 + d*x + e*y + f = 0 % % The fit-estimation method of use is the Least Squares method (without any weights)