Search and select points form each quadrant
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello
How to select two or any number of nearest points from each quadrant?
I have point T and I want to select only two nearest points from each quadrant. ![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/277865/image.bmp)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/277865/image.bmp)
0 commentaires
Réponses (1)
darova
le 18 Mar 2020
You can use pdist2 for this purpose
D = pdist2([xt yt],[x(:) y(:)]);
ix = D < 1;
plot(x(ix),y(ix),'or')
hold on
plot(x,y,'.b')
hold off
0 commentaires
Voir également
Catégories
En savoir plus sur Statistics and Machine Learning Toolbox dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!