Calculating a distance between a point and a contour along an axis
조회 수: 2 (최근 30일)
이전 댓글 표시
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.

댓글 수: 0
채택된 답변
KSSV
2022년 6월 30일
Let O(x,y) be your red point.
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
2022년 6월 30일
@Minyoung Hong if KSSV's answer led to a solution for you, you should Accept-click it.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Contour Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!