Clear Filters
Clear Filters

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

6 views (last 30 days)
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 Comments
Image Analyst
Image Analyst on 15 May 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 on 16 May 2018
@rajesh kumar: You do not provide details, which allow to help you specifically. Please try to be much more clearer.

Sign in to comment.

Answers (1)

Image Analyst
Image Analyst on 15 May 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);

Categories

Find more on MATLAB Parallel Server in Help Center and File Exchange

Products


Release

R2016a

Community Treasure Hunt

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

Start Hunting!