How to find the distances between two points in X-Y plane?

8 vues (au cours des 30 derniers jours)
Anna
Anna le 20 Sep 2019
I have two matrices with x values in column 1 and y values in column 2.
I have to find the distances between the values in matrix 1 and matrix 2.
Is there a function to directly find the euclidean distance between the points in both the matrices?

Réponse acceptée

darova
darova le 20 Sep 2019
Use euclidean distance
1111Untitled.png
d = sqrt( (x2-x1).^2 + (y2-y1).^2 );

Plus de réponses (1)

Bhaskar R
Bhaskar R le 20 Sep 2019
You can use
pdist
command if you have Statistics and Machine Learning Toolbox with different variations of distance metrics like euclidean, cosine, hamming, etc

Catégories

En savoir plus sur Statistics and Machine Learning Toolbox 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