How to find out number of source nodes and average indegree of a source node in directed graph?

4 ビュー (過去 30 日間)
I have a dataset from which I have created a directed graph.
How I want to find out indegree of source nodes and number of source node. And want to do the same thing for target nodes of that directed graph.
Here is my code.
m = readtable('rough.csv')
col1= m{:,1}
col2= m{:,2}
col3= m{:,3}
g= digraph(col1,col2,col3)
plot(g,'Layout','force','EdgeLabel',g.Edges.Weight)

採用された回答

Srijith Kasaragod
Srijith Kasaragod 2021 年 8 月 5 日
As per my understanding you have a directed graph and you want to compute indegree and number of source and target nodes. The following lines of code shows one of the possible ways:
%store edges and nodes into variables
edges= g.Edges;
nodes= g.Nodes;
%filter out source and target nodes from edges
s= unique([edges{:,1}(:,1)])
t= unique([edges{:,1}(:,2)])
%input graph and source or target nodes into ‘indegree’ function
in_deg_s= indegree(g,s);
in_deg_t= indegree(g,t);
%count the number of source and target nodes
no_source= numel(s);
no_target= numel(t);
You can refer this link to read more about 'indegree' function.
  2 件のコメント
Mouli Sarkar
Mouli Sarkar 2021 年 8 月 6 日
Thank you so much. Can you please tell me how to find selfloop? I mean if a node is regulating itself. How to find out those self regulating nodes?
Srijith Kasaragod
Srijith Kasaragod 2021 年 8 月 6 日
@Mouli Sarkar I recommend you create another post for this question to get a faster response.

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by