angle and radius of a curve

8 次查看(过去 30 天)
i have the xy data (in excel) to obtain the following curve in black (obtained in laboratory)
there anyway to obtain the parameters in red, or something similar to it? i have many curves like those and i need to classificate them by some parameters ans this were the ones i remembered
any help of code or theorical would be very good to me. thank you so much.
here you have the excel data and the plots (there are two types, but the parameters i want are as well the angle and radius).
you very much guys.

采纳的回答

John Petersen
John Petersen 2012-11-20
It would help if you gave some definitions, but I'll do that, hopefully correctly interpreting your question.
Define the curve as C = [xv,yv] where xv and yv are a vector of corresponding points of the curve. Then the red X can be defined as
X = [xv(1),yv(end)]; % this may not work for the general case, but
%should work for the curve you've shown if the curve starts at the left
%and moves to the right.
v1 = (X-C(1,:)); %vector to starting point of the curve
v2 = (X-C(end,:)); %vector to ending point of the curve
Cangle = acos(dot(v1,v2)/(abs(v1)*abs(v2))); % curve angle
r1 = abs(v1); % distance to starting point of curve
r2 = abs(v2); % distance to ending point of curve
  1 个评论
Image Analyst
Image Analyst 2012-11-23
编辑:Image Analyst 2012-11-23
John, did you get an advance copy of the Mind Reading Toolbox or something?

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Interpolation 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by