How to obtain a graph?

3 views (last 30 days)
Andrea Miceli
Andrea Miceli on 16 Jul 2021
Edited: Matt J on 16 Jul 2021
Hello to evreyone, I did a digraph on matlab and the result is what you see in the pic attached. What i am intereset in doing is to take just one node from this graph and see to which other nodes it connects to ( both in-degree and out-degree). As you can imagine, for a presentation the graph below is not really clear. I've already checked other function such as "subgraph", but I was not able to manage it. Can someone help me in doing this?
Thanks in advance

Accepted Answer

Matt J
Matt J on 16 Jul 2021
Edited: Matt J on 16 Jul 2021
I've already checked other function such as "subgraph", but I was not able to manage it.
That should have worked,
neighb=[predecessors(G,nodeID); nodeID; successors(G,nodeID)];
Gsub=subgraph(G,neighb)

More Answers (0)

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!