Need help with finding distances in a matrix program
조회 수: 8 (최근 30일)
이전 댓글 표시
I have an A matrix, in which I need to find the distances between the points. I have the formulas, but I need help to translate this into matlab.
Lets say that a is equal to:
A=
0 1 0 0 1 0
1 0 0 0 0 0
0 0 0 0 1 0
I have a program to create a new matrix called B,finding this points in which the first column is the number of point, the second column is the x coordinate of the point and the third column is the y coordinate. In this case will be:
B=
1 2 1
2 5 1
3 1 2
4 5 3
Here is the code for this program:
clear z
p=1;
[row,col] = size(A);
for i = 1:row
for j=1:col
if(A(i,j)>0)
z(p,:)=[j,i];
p=p+1;
end
end
end
B=[(1:p-1)',z] %B matrix 1 col is #of point, 2 col is xcoord,3 col is ycoord
I need to find the distances between these points, in this case will be dijx(x distance) and dijy (y distance). For this matrix these will be the distances(absolute value from one point to another point):
dijx=
0 3 1 3
3 0 4 0
1 4 0 4
3 0 4 0
dijy=
0 0 1 2
0 0 1 2
1 1 0 1
2 2 1 0
Can you help me to create a for loop code to find those distances? Thank you!!
댓글 수: 0
채택된 답변
Andrei Bobrov
2014년 1월 25일
편집: Andrei Bobrov
2014년 1월 25일
[r,c]=find(A');
dij = dist([r,c]'); % dist from Neural Network Toolbox
or
[r,c]=find(A');
dijx = bsxfun(@minus,r,r');
dijy = bsxfun(@minus,c,c');
dij = hypot(dijx,dijy);
댓글 수: 3
추가 답변 (1개)
Image Analyst
2014년 1월 25일
You can get B in two lines of code:
[rows, columns] = find(A)
B = [[1:length(rows)]', rows, columns]
Now I'm not sure what distances you are after are you wanting every distance from N points to the other N-1 points? So you'll have every possible pairing and N*(N-1) distance?
참고 항목
카테고리
Help Center 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!