how to find distance between two points?
조회 수: 2,213(최근 30일)
표시 이전 댓글
Hai,
I need to find the distance between two points in the figure, which I have plotted. Is there any function in matlab that could find the distance between two points. Looking for your reply.
BSD
댓글 수: 0
채택된 답변
Lucas García
2011년 9월 27일
e.g: distance between points (0,0) and (2,1)
>> X = [0,0;2,1];
>> d = pdist(X,'euclidean')
d =
2.2361
댓글 수: 3
zoher badr
2021년 2월 14일
in this case you have to have a nested loop so you gaurantee to reach each point int the list
추가 답변(6개)
MathWorks Support Team
2018년 11월 8일
The distance between two points x and y is the same as the magnitude of the vector that points from one point to the other:
>> x = [0 0];
>> y = [2 1];
>> norm(x-y)
ans =
2.2361
Walter Roberson
2011년 9월 27일
No. You will have to code it yourself.
There are many different possible meanings for "distance". See http://en.wikipedia.org/wiki/Metric_%28mathematics%29#Examples
댓글 수: 0
Sohrab Dorodvand
2018년 8월 2일
if i was to compare one point of a 1d graph and to compare the distances between that point(the reference point) to others on the graph. how can i do that?
댓글 수: 0
Daksh
2023년 2월 2일
I understand you're experiencing doubts over calculating distance between 2 points in the figure for which you have variable values saved in workspace. You can use one of the following methods for your utility:
- norm(): distance between two points as the norm of the difference between the vector elements
- pdist(X): Euclidean distance between pairs of observations in X
- pdist2(X,Y,Distance): distance between each pair of observations in X and Y using the metric specified by Distance.
- distance(): distance between two points in Geographic space
Hope this helps!
댓글 수: 0
참고 항목
범주
Find more on Get Started with MATLAB in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!