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!
