Filter löschen
Filter löschen

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

6 Ansichten (letzte 30 Tage)
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 Kommentare
Image Analyst
Image Analyst am 15 Mai 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 am 16 Mai 2018
@rajesh kumar: You do not provide details, which allow to help you specifically. Please try to be much more clearer.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Image Analyst
Image Analyst am 15 Mai 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);

Kategorien

Mehr zu MATLAB Parallel Server finden Sie in Help Center und File Exchange

Produkte


Version

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by