Azzera filtri
Azzera filtri

My question related to find the nearest point to the centroid of the each cluster?

6 visualizzazioni (ultimi 30 giorni)
after reducing the pareto set, the centroid of the clusters can be found, after finding the centroid of cluster i need to find nearest point to the centroid in each cluster. how to find nearest point to the centroid of each cluster. please suggest me with any related coding as an example.
  8 Commenti
Image Analyst
Image Analyst il 15 Mag 2018
Again, I gave you code. Scroll down the page and look at it. Comment down there if you have questions on it.
Jan
Jan il 16 Mag 2018
@rajesh kumar: You do not provide details, which allow to help you specifically. Please try to be much more clearer.

Accedi per commentare.

Risposte (1)

Image Analyst
Image Analyst il 15 Mag 2018
For a given centroid, try this:
distances = sqrt((x - xCentroid).^2 + (y - yCentroid).^2);
[minDistance, indexOfMin] = min(distances);
xOfClosest = x(indexOfMin);
yOfClosest = y(indexOfMin);

Categorie

Scopri di più su MATLAB Parallel Server in Help Center e File Exchange

Prodotti


Release

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by