Finding the nearest node in this case
2 views (last 30 days)
Show older comments
Sushree Patra
on 9 Dec 2018
Commented: Sushree Patra
on 9 Dec 2018
I am trying to find nearest node from the fixed node.
so here is the code
x1= [16,38,56,78,45];
y1 =[23,62,77,56,34];
x2 = 100*rand(20,1);
x2= 150*rand(20,1);
for i = 1:5
text(x1(i),y1(i),num2str(i))
end
for i= 1:20
text(x2(i), y2(i),num2str(i));
end
Now i have to find out the nearest node of [x1,y1] w.r.t [x2,y2]
Objective find out which 10nodes from [x2,y2] are near to the [x1,y1] node
0 Comments
Accepted Answer
Walter Roberson
on 9 Dec 2018
pdist2
6 Comments
Walter Roberson
on 9 Dec 2018
dd = pdist2([x1 y1], [x2 y2]);
[~, idx] = min(dd);
xclosest = x2(idx);
yclosest = y2(idx);
... I feel like I just did someone's homework for them because they did not read the documentation .
More Answers (0)
See Also
Categories
Find more on Statistics and Machine Learning Toolbox 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!