How to find the maximum distance between two curves?

조회 수: 32 (최근 30일)
Daniel Tanner
Daniel Tanner 2019년 12월 30일
댓글: Vladimir Sovkov 2019년 12월 30일
Hi, I would like to be able to calculate the maximum distance between two curves, is there a simple way of doing this without purchasing one of MatLab's add ons? I have attached a copy of the two curves for reference.
Any help is greatly appreciated, thanks!untitled.png

채택된 답변

Vladimir Sovkov
Vladimir Sovkov 2019년 12월 30일
(1) Specify, what do you mean by the distance between curves. If this is the distance between any points of them, a special (though not very much complicated) program is needed; if this is the vertical distance-see the following comments.
(2) If you have the curves as the numeric vectors y1, y2 of the same size presnted at the same common grid x, the maximum vertical distance is just
max(abs(y1-y2))
If the grids differ, address the interp1 function to recast them to the common grid preliminary.
(3) If you only have the curves as pictures, use the digitizing software to turn them into the numeric form. There are a lot of such programs, e.g., DigBit at https://www.mathworks.com/matlabcentral/fileexchange/73785-digbit
  댓글 수: 2
Daniel Tanner
Daniel Tanner 2019년 12월 30일
Ah yes, I understand my explanation was not quite sufficient before. Ideally I would like to know the maximum horizontal distance between two points?
Vladimir Sovkov
Vladimir Sovkov 2019년 12월 30일
In my explanation, turn the word "vertical" to "horizontal" or, alternatively, rotate your image by -90 degrees.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Computational Geometry에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by