フィルターのクリア

How can I calculate the distance between a set of points and a single point within a matrix?

72 ビュー (過去 30 日間)
Hi,
I need to calculate the euclidean distance between a set of points on a matrix, and one other point in the same matrix. I and J are 9x1 vectors, where I represents the "x" and J represents "y" coordinates of a set of 9 points. "rows" and "columns" are the x and y coordinates of a single point. I have the following code:
for g=1:length(I)
for f=2
I(g)=x2
J(f)=y2
distance_between_points = sqrt((x2 - rows)^2 + (y2 - columns)^2);
end
end
I obtain a single value from this, where I should be getting a distance value between each point represented by I,J,and the point represent by (rows, columns). I've tried pdist2 and I get ~30 values which makes a little less sense. Is there a way to do this?

採用された回答

Image Analyst
Image Analyst 2017 年 6 月 11 日
編集済み: Image Analyst 2017 年 6 月 11 日
If x and y are the vectors of all the coordinates, and xp and xp are the coordinates of the single point, then you can find all the distances between (xp, yp) and all the other points doing this:
distances = sqrt((x-xp).^2 + (y-yp).^2);
No for loop(s) needed.
By the way, don't confuse x with rows and y with columns like you did in your code. x is columns, not rows. y is rows, not columns. Arrays are indexed m(y, x) and NOT as m(x,y)!

その他の回答 (1 件)

Walter Roberson
Walter Roberson 2017 年 6 月 11 日
Without a loop:
distance_between_points = sqrt((I - columns).^2 + (J - rows).^2)
Notice that columns is an x coordinate, not a y coordinate

カテゴリ

Help Center および File ExchangeNaNs についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by