フィルターのクリア

Calculating a distance between a point and a contour along an axis

2 ビュー (過去 30 日間)
Minyoung Hong
Minyoung Hong 2022 年 6 月 30 日
コメント済み: Minyoung Hong 2022 年 7 月 4 日
I would like to implement an code to realiyze the calculation between a point and a countour of an cloud point along the x axis in 2D (blue line).
The lines are drawn with line() and the redpoint is only temporary.
After that, I would like to make a code to calculate a distance with any angle (green line).
Could anyone give me a tip or help me for that?
Thank you in advance.

採用された回答

KSSV
KSSV 2022 年 6 月 30 日
Let O(x,y) be your red point.
You can get the blue line intersecting the contour using knnsearch.
If you want to draw a line of length L with angle a w.r.t horizontal i.e. blue line.
%L is the length of line and a is angle
x2=x+(L*cos(a));
y2=y+(L*sin(a));
plot([x x2],[y y2])
  7 件のコメント
Matt J
Matt J 2022 年 6 月 30 日
@Minyoung Hong if KSSV's answer led to a solution for you, you should Accept-click it.
Minyoung Hong
Minyoung Hong 2022 年 7 月 4 日
@Matt J Oh I am sorry. I did it now.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeContour Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by