필터 지우기
필터 지우기

find the distance from each point in matrix B to all point in matrix A

조회 수: 9 (최근 30일)
ha ha
ha ha 2017년 10월 26일
댓글: Rik 2017년 10월 27일
Let's say: I have the matrix A containing of 5 points
A=[ 5 5 1 ----> coordinate (x,y,z) of point A1
4 5 2 ----> coordinate (x,y,z) of point A2
1 1 1 ----> coordinate (x,y,z) of point A3
2 3 1 ----> coordinate (x,y,z) of point A4
6 1 7 ] ----> coordinate (x,y,z) of point A5
And, I also have matrix B:
B=[ 0 2 1 ----> coordinate (x,y,z) of point B1
4 1 1 ] ----> coordinate (x,y,z) of point B2
How to find the Euclidean distance between each point in B and all points(1,2,3,4,5) in A.
Example:
distance between point B1 and points A1:
=sqrt{(5-0)^2+ (5-2)^2 + (1-1)^2}= 5.83
distance between point B1 and points A2
distance between point B1 and points A3
.......................................
distance between point B2 and points A1
distance between point B2 and points A2, A3,A4, A5
*I hope the result will be shown in matrix C(2-by-5)*
  댓글 수: 1
Rik
Rik 2017년 10월 26일
Knowing my answer on your previous question, what do you think would be the solution? It isn't that hard. Of course you could solve this with a loop, but there is a direct solution, for which you can use functions like repmat.
Show some effort.

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

채택된 답변

Andrei Bobrov
Andrei Bobrov 2017년 10월 26일
편집: Andrei Bobrov 2017년 10월 26일
Or
Dista = squeeze(sqrt(sum((A - reshape(B',1,3,[])).^2,2))); % New MATLAB
Dista = squeeze(sqrt(sum(bsxfun(@minus,A,reshape(B',1,3,[])).^2,2))); % Old MATLAB

추가 답변 (1개)

KSSV
KSSV 2017년 10월 26일
doc pdist and pdist2.
  댓글 수: 4
Rik
Rik 2017년 10월 27일
Typing doc pdist will open the documentation for the pdist function, which you can also find online. If you look at the 'see also' section, you will a find reference to the pdist2 function.
Knowing how to look for and read the documentation is a very useful skill. Extremely easy to learn, sometimes hard to master. Using your favorite internet search engine also helps out a lot.

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

카테고리

Help CenterFile Exchange에서 行列および配列에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!