Shortest Path with Single Source Node and Multiple Target Nodes

3 views (last 30 days)
Hi,
There is node from A to H and used shortestpath fn to find the short path
a=["A" "A" "A" "B" "B" "C" "C" "D" "D" "E" "F" "F" "G"];
b=["B" "C" "D" "D" "F" "D" "E" "E" "G" "G" "G" "H" "H"];
distance=[3 2 5 2 13 2 5 4 3 6 2 3 6];
c=digraph(a,b,distance)
plot(c,'EdgeLabel',c.Edges.Weight)
[p,d]=shortestpath(c,"A","H")
got this
c =
digraph with properties:
Edges: [13×2 table]
Nodes: [8×1 table]
p = 1×5 string
"A" "C" "D" "G" "H" *
d = 13
But i need to have results from A to B , A to C ,.... till A to H. I have used shortestpathtree but gives only edges and nodes with distance. I need result like above one 'p' with multiple target nodes (with single source node). is that for loop helpful? else any other way.
Thanks in advance.

Answers (1)

ag
ag on 15 Sep 2024
Hi Kasturi,
To get a similar result from "shortestpathtree", as obtained by using the "shortestpath" function, please set the "OutputForm" input argument to "Cell". The following code snippet illustrates the appropriate syntax:
a=["A" "A" "A" "B" "B" "C" "C" "D" "D" "E" "F" "F" "G"];
b=["B" "C" "D" "D" "F" "D" "E" "E" "G" "G" "G" "H" "H"];
distance=[3 2 5 2 13 2 5 4 3 6 2 3 6];
c=digraph(a,b,distance);
plot(c,'EdgeLabel',c.Edges.Weight)
[p, d] = shortestpathtree(c, "A",'OutputForm','cell')
p = 8x1 cell array
{["A" ]} {["A" "B" ]} {["A" "C" ]} {["A" "C" "D" ]} {["A" "B" "F" ]} {["A" "C" "E" ]} {["A" "C" "D" "G" ]} {["A" "C" "D" "G" "H"]}
d = 1×8
0 3 2 4 16 7 7 13
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>
Hope this helps!

Categories

Find more on Graph and Network Algorithms 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!