Effacer les filtres
Effacer les filtres

How to find the distance between vectors given in a cell array?

1 vue (au cours des 30 derniers jours)
That Guy
That Guy le 12 Nov 2020
Commenté : Ameer Hamza le 12 Nov 2020
say i have a cell array in the form p = {[x1, y1], [x2, y2],...,[xn, yn]}
i want to find the number of points that arent within r distance of eachother. I know that pdist will find the distance between points but im not sure how to break this cell array up in order to apply this function. Any help?

Réponse acceptée

Ameer Hamza
Ameer Hamza le 12 Nov 2020
You can apply pdist() like this
p = {[x1, y1], [x2, y2], [x3, y3]};
P = vertcat(P{:});
D = pdist(P);
  2 commentaires
That Guy
That Guy le 12 Nov 2020
thats exactly what i was looking for! thanks!
Ameer Hamza
Ameer Hamza le 12 Nov 2020
I am glad to be of help!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Resizing and Reshaping Matrices dans Help Center et File Exchange

Produits


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by