Find close points in two matrices of coordinates
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Adam Fitchett
le 22 Sep 2022
Commenté : Adam Fitchett
le 28 Sep 2022
I have two different length matrices of 3D coordinates. I want to find all the unique coordinates in one matrix that are within a certain Euclidean distance of any of the coordinates in the other matrix. What is the most efficient way to do this?
0 commentaires
Réponse acceptée
Torsten
le 22 Sep 2022
Modifié(e) : Torsten
le 22 Sep 2022
Use "pdist2" to calculate the distances of the sites of the first set to the sites of the second set.
Check which rows of the distance matrix D have an entry <= dmax where dmax is your prescribed maximum distance.
These are the sites of the first set you want to determine.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Dimensionality Reduction and Feature Extraction 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!