How to find distance between two nodes? including the nodes.

3 Ansichten (letzte 30 Tage)
Aswin Sandirakumaran
Aswin Sandirakumaran am 1 Jul. 2018
Kommentiert: navanit dubey am 17 Nov. 2020
For example: In this graph i would like to find distance *between s1 and s3.
SO MY OUTPUT SHOULD LOOK LIKE : Distance = 7 (includes both edges and nodes)
  2 Kommentare
Paolo
Paolo am 1 Jul. 2018
Can you share the code with which the image was generated?
Aswin Sandirakumaran
Aswin Sandirakumaran am 1 Jul. 2018
I just used addnode and addedge.

Melden Sie sich an, um zu kommentieren.

Antworten (2)

Anton Semechko
Anton Semechko am 1 Jul. 2018
Download graph processing toolbox from FEX. Use Dijkstra's algorithm to get shortest path between pairs of nodes. Path length = distance between nodes = sum of edge weights along the path.

Walter Roberson
Walter Roberson am 2 Jul. 2018
Call https://www.mathworks.com/help/matlab/ref/graph.shortestpath.html shortestpath() on the graph object to get the distances.

Kategorien

Mehr zu Graph and Network Algorithms finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by