Info
此问题已关闭。 请重新打开它进行编辑或回答。
i have to form eucledian distance based clusters inside first box in which green color nodes are present.............iff, the calculated distance would be less than the pre-defined distance(D) present code
1 次查看(过去 30 天)
显示 更早的评论
plz help me i can't able to find clusters in first box on the basis of eucledian distance b/w the nodes present only in first box................help me with syntax as soon as possible.here distance would be calculated b/w each and every node only present in the first box.
2 个评论
KSSV
2016-9-7
I have checked your question a week ago....You have re written the code....there are three cells/ boxes and they have no points in that.
回答(1 个)
KSSV
2016-9-7
If you have the coordinates in a cell/ box stored in the matrix coor, you can calculate the Euclidean distance as below:
dist = cell(npoints,1) ;
for i = 1:npoints % loop for each points, npoints is total number of points
data = repmat(coor(i,:),[length(coor),1])-coor ;
dist{i} = sqrt(data(:,1).^2+data(:,2).^2);
end
0 个评论
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!