How to plot this picture use matlab?
Ältere Kommentare anzeigen
Akzeptierte Antwort
Weitere Antworten (1)
Ameer Hamza
am 20 Mai 2020
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 Kommentare
z cy
am 21 Mai 2020
Ameer Hamza
am 21 Mai 2020
Do you have the adjacency matrix for your graphs?
z cy
am 21 Mai 2020
Ameer Hamza
am 21 Mai 2020
Bearbeitet: Ameer Hamza
am 21 Mai 2020
Do you have the code to create the adjacency matrix? Also, do you want to use custom coordinates for the node position?
z cy
am 23 Mai 2020
Kategorien
Mehr zu Graph and Network Algorithms finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
