フィルターのクリア

How to find degree distribution of a directed signed graph?

5 ビュー (過去 30 日間)
Mouli Sarkar
Mouli Sarkar 2021 年 8 月 24 日
回答済み: Devyani Maladkar 2021 年 8 月 25 日
I have a dataset which consists of edge lists. From that dataset I can create a directed signed graph. Now I want to study degree distribution. How can I study degree distribution of this particular graph?

回答 (1 件)

Devyani Maladkar
Devyani Maladkar 2021 年 8 月 25 日
Hello,
I understand that you want to obtain information regarding the degree distribution from the graph.
You can obtain the degree of the nodes and then use a histogram to study the distribution of degrees of nodes in the graph.
s = [1 1 1 4 4 6 6 6];
t = [2 3 4 5 6 7 8 9];
G=graph(s,t)
hist(degree(G))) % degree on x-axis
You can refer to the documentation for degree function and documentation for creating graphs for more information.

カテゴリ

Help Center および File ExchangeDirected Graphs についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by