For rows and 2 columns, containing xOy coordinates of the point. Look for the two points with the furthest distance and return the row index of those two points.
2 views (last 30 days)
Show older comments
Please, Can y help me :
For rows and 2 columns, containing xOy coordinates of the point. Look for the two points with the furthest distance and return the row index of those two points.
0 Comments
Answers (1)
Chunru
on 23 Oct 2021
n = 8;
xy = rand(n, 2);
d = pdist(xy);
D = squareform(d)
[~, idx]= max(D(:));
[i, j] = ind2sub([n n], idx)
0 Comments
See Also
Categories
Find more on Simulation, Tuning, and Visualization in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!