How to plot this picture use matlab?
古いコメントを表示
採用された回答
その他の回答 (1 件)
Ameer Hamza
2020 年 5 月 20 日
Try this code
s = randi([1 100], 1, 2000);
t = randi([1 100], 1, 2000);
G = graph(s, t);
p = plot(G, 'Layout', 'subspace');
p.NodeLabel = [];
p.MarkerSize = 10;
p.NodeCData = 1:100;
p.EdgeColor = [0.5 0.5 0.5];
colormap(autumn)
colorbar

5 件のコメント
z cy
2020 年 5 月 21 日
Ameer Hamza
2020 年 5 月 21 日
Do you have the adjacency matrix for your graphs?
z cy
2020 年 5 月 21 日
Ameer Hamza
2020 年 5 月 21 日
編集済み: Ameer Hamza
2020 年 5 月 21 日
Do you have the code to create the adjacency matrix? Also, do you want to use custom coordinates for the node position?
z cy
2020 年 5 月 23 日
カテゴリ
ヘルプ センター および File Exchange で Graph and Network Algorithms についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
