首页 养生问答 疾病百科 养生资讯 女性养生 男性养生

Matlab 曲线到定点距离最短问题

发布网友 发布时间:2022-04-22 00:19

我来回答

3个回答

热心网友 时间:2023-09-27 04:02

You can use Matlab's symbolic package to get the minimum distance, you might need to use a little bit calculus

t = sym('t','real') % define a real symbol variable

x=5*t-10;  

y=25*t.^2-120*t+144;

d = (x^2+y^2)^.5;  % distance function

d1 = diff(d); % the differentiation

t1s = solve(d1); % let the differentiation equal to 0 to get the maxmin point

t1v = eval(t1s); % get the numerical evaluation

min_d = subs(d,t,t1v)

min_d =

    1.3577

You can use the following code to generate a figure of illustrating the curve and the distance:

t = [0:0.001:4]; 

x=5*t-10;

y=25*t.^2-120*t+144;

figure(1);

hold on;

plot(x,y,'b');

axis([0 4 0 4],'square');

x=5*t-10;

d=(x.^2+y.^2).^.5;

figure(1);

hold on;

plot(x,d,'g');

t=t1v;

x=5*t-10;

y=25*t.^2-120*t+144;

plot(x,y,'r.');

plot([0 x],[0 y],'r');

plot([x x],[0 4],'--');

追问And one more question, how to determine x, y at which the curve is the closest to the origin(0,0)? Thank you~

追答when you have the parameter t, you can simply substitute it into the formula to obtain x and y, in my code:
t=t1v;
x=5*t-10;
y=25*t.^2-120*t+144;

And the point is a red point on the figure.

热心网友 时间:2023-09-27 04:02

可这样:
t=0:0.01:4;x=5*t-10;y=25*t.^2-120*t+144;plot(x,y)
figure
plot(x,y)
hold on
syms x(t) y(t)
x=5*t-10;
y=25*t.^2-120*t+144;
kf=-diff(x)/diff(y);%法线的斜率
%设曲线上(x,y)点及(0,0)在法线上,则法线的斜率也等于下式
kk=(y-0)/(x-0);
%解方程求交点的t值
t1=solve(kf==kk,'MaxDegree',3,'Real',true);
t2=double(t1);
x1=double(subs(x,t,t2));
y1=double(subs(y,t,t2));
d=hypot(x1,y1);
fprintf('原点到曲线的最短距离是 %f\n',d)
plot(x1,y1,'r*')
plot(0,0,'r*')
plot([0,x1],[0,y1])
hold off
axis equal
axis([-1,+5,-1,10])

热心网友 时间:2023-09-27 04:03

最容易懂的就自己编程把;
matlab有个直接求两点间的距离的函数;你在循环比较;
或者你把他看成线性规划问题,你应该懂得;
再则 用lingo 也行;实在不懂的话就写c语言把 干脆点也行 。具体函数还是你自己来熟练操作把

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com