matlab 中已知各点之间距离怎样求未知点到各点距离最短
1个回答
展开全部
举例跟你说吧,假定有2个点(n个点类似)
a(1,2)
b(3,4)
求c(x,y)使
f(x)=|ac|+|bc|=sqrt((x-1)^2+(y-2)^2)+sqrt((x-3)^2+(y-4)^2)
最小值。
step1:
定义函数
function
y=f(x)
x=x(1);
y=x(2);
y=sqrt((x-1)^2+(y-2)^2)+sqrt((x-3)^2+(y-4)^2);
step2:
求最小值
[x,y]=fminsearch(@f,
[0,0])
得到x为坐标,y为最小值。
程序已调试过,请放心使用。
a(1,2)
b(3,4)
求c(x,y)使
f(x)=|ac|+|bc|=sqrt((x-1)^2+(y-2)^2)+sqrt((x-3)^2+(y-4)^2)
最小值。
step1:
定义函数
function
y=f(x)
x=x(1);
y=x(2);
y=sqrt((x-1)^2+(y-2)^2)+sqrt((x-3)^2+(y-4)^2);
step2:
求最小值
[x,y]=fminsearch(@f,
[0,0])
得到x为坐标,y为最小值。
程序已调试过,请放心使用。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询