Azzera filtri
Azzera filtri

selection of equal distances points from a set of points ?

9 visualizzazioni (ultimi 30 giorni)
assume a list of points or nodes. each one of them has x and y coordinates . the distance between two points i and j equal D(i,j)= sqrt((xi-xj)^2+(yi-yj)^2).
now, i want to select a set of these nodes which have equal distances between them (the inter-distance is specified previously --> d). hence the selected points are uniformly distributed

Risposta accettata

KSSV
KSSV il 11 Lug 2016
Try to doc knnsearch.....knnsearch gives you nearest neighbors of the given set of points lying at a specified distance given as input.
  3 Commenti
Abdelwahab Fawzy
Abdelwahab Fawzy il 11 Lug 2016
Modificato: Abdelwahab Fawzy il 11 Lug 2016
thanx for help, it is used for selection of the nearest neighbor nodes from a given location.
but i still need to select a number of nodes which are separated by an equal distance from each other (d) for example points (A B C D) where, AB~=AC~=AD~=BC~=BD~=CD =d

Accedi per commentare.

Più risposte (1)

Andrei Bobrov
Andrei Bobrov il 11 Lug 2016
[ii,jj] = find(triu(D == d));

Community Treasure Hunt

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

Start Hunting!

Translated by