Calculate distance between XY coordinates

297 vues (au cours des 30 derniers jours)
Naruto
Naruto le 8 Nov 2020
Commenté : Naruto le 11 Nov 2020
How do we calculcate one xy coordinate against other xy coordinates in a 1000x2 matrix?

Réponse acceptée

Sreeranj Jayadevan
Sreeranj Jayadevan le 11 Nov 2020
You can use the pdist function to calcluate pairwise distance between pairs of observations.
Suppose "Coords" is your 1000 by 2 matrix, then the following MATLAB code can give you the distance:
%%Calculate distance
loc_1=1;
loc_2=2;
Coord_1=Coords(loc_1,:); % The first coordinate
Coord_2=Coords(loc_2,:); % The second coordinate
pair=[Coord_1;Coord_2];
distance=pdist(pair,'euclidean');
"distance" will give you the euclidean distance between the first and second coordinates. You can loop through the coordinate locations (i.e loop through the "loc_i" variable) to find the distance between a particular coordinate and the rest of the coordinates.
Note: The same result can be achieved in multiple ways, eg: using norm,sqrt etc..
  1 commentaire
Naruto
Naruto le 11 Nov 2020
Thank you Sreeranj, it worked!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by