高斯牛顿法: function [ x_ans ] = GaussNewton( xi, yi, ri) % input : x = the x vector of 3 points % y = the y vector of 3 points % r = the radius vector of 3 circles % output : x_ans = the best answer % set up r equations r1 = @(x, y) sqrt((x-xi(1))^2+(y-y…