how to caculate distance?

1 回表示 (過去 30 日間)
ankanna
ankanna 2021 年 7 月 5 日
コメント済み: ankanna 2021 年 7 月 5 日
o node1
node 2 o o node 3
if the above figure three nodes are present. how to calculate distance between these nodes.

回答 (1 件)

Yongjian Feng
Yongjian Feng 2021 年 7 月 5 日
Can you figure out the coordinates of those three dots? If so that the distance is defined as d=sqrt((x1-x2)^2+(y1-y2)^2)). Here (x1, y1) and (x2, y2) are the coordinates of the dots.
  1 件のコメント
ankanna
ankanna 2021 年 7 月 5 日
n = 3;
source = 1;
destination = 3;
Link=(n*(n-1))/2;
c=2^Link;
NN = toeplitz(Link+1:-1:2)
mask = logical(fliplr(diag(ones(1,Link-1),-1)));
NN(mask) = 1;
for c = 0:2^Link-1
l = bitget(c, NN)
end
Edges = Link
for c = 0:2^Link-1
l = bitget(c, NN)
G = graph(l~=0)
G.Edges
path = shortestpath(G,source,destination)
end
for example distance between any two nodes is 1m. i want distance between nodes and shortest distance also.please help me to generate this.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeGraph and Network Algorithms についてさらに検索

製品


リリース

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by