calculate distance between XY pair

조회 수: 2 (최근 30일)
Boby S
Boby S 2019년 6월 26일
답변: Pawan Sharma 2020년 7월 30일
Hi
I want to calculate distance between XY points but as pair not all of them.
I used 'pdist' and 'pdist2' function but they calculate distance for all points.
I want to calculate point 1(xy) with point 2(xy) then point 2(xy) with point 3(xy) and go on (it is a part of recorded movments).
I think I will need to write a loop but I am not sure about proper function.
  댓글 수: 3
Boby S
Boby S 2019년 6월 27일
Hello
That is right.
infinity
infinity 2019년 6월 27일
Hello,
So, I think the anwser below is what you want.

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

채택된 답변

Walter Roberson
Walter Roberson 2019년 6월 26일
sqrt(diff(x).^2 + diff(y).^2)

추가 답변 (1개)

Pawan Sharma
Pawan Sharma 2020년 7월 30일
You can use the method suggested by Walter in a forloop to get the required ansewer
A = [ 1 3; 2 4; 3 6]
distanceList = zeros(1,size(A,1)-1); % calculated distance will be stored here
for i = 1:size(A,1)-1
data1 = A(i,:);
data2 = A(i+1,:)
distance = sqrt(((data1(1)-data2(1))^2)+(data1(2)-data2(2))^2);
distanceList(i) = distance;
end

카테고리

Help CenterFile Exchange에서 Statistics and Machine Learning Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by