Create random graph with limited degree

3 ビュー (過去 30 日間)
Sara
Sara 2020 年 7 月 12 日
コメント済み: Sara 2020 年 7 月 13 日
I want to create random and an undirected graph where the maximum degree of each node in the graph = 4, we can have in the graph nodes with the degree 2,3 or even 4 but none of them has a degree greater than 4, in other words, the degree of each node is between 1 and 4.
anyone can help?

採用された回答

Bruno Luong
Bruno Luong 2020 年 7 月 13 日
n = 10; % number of nodes
maxDeg = 4;
M=rand(n);
M=0.5*(M+M');
S1=sort(M,1,'descend');
S2=sort(M,2,'descend');
T=max(S1(maxDeg,:),S2(:,maxDeg));
A=M>=T;
G=graph(A)
plot(G)
  1 件のコメント
Sara
Sara 2020 年 7 月 13 日
Thank you verry much

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

その他の回答 (1 件)

Christine Tobler
Christine Tobler 2020 年 7 月 13 日
You could start by just making an undirected graph, and then go through each node and compute its degree. If the degree is larger than 4, remove some of the edges connecting to that node at random.
Do you need it to be "uniformly" random, and if yes in which way?
  1 件のコメント
Sara
Sara 2020 年 7 月 13 日
I will try that thank you verry much

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

カテゴリ

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