how to change font size of bus number in graph
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I have this graph
M=[1,2;3,4;4,1;2,3]
g = graph(M(:, 1), M(:, 2));
h = plot(g);
I have attached the graph here and want to change font of bus number.
0 Kommentare
Akzeptierte Antwort
Bhaskar R
am 4 Jan. 2020
This answer can fullfill your requirement
In your case
M=[1,2;3,4;4,1;2,3]
g = graph(M(:, 1), M(:, 2));
h = plot(g, 'NodeLabe', {});
t = text(h.XData,h.YData,{'1','2','3','4'},'FontSize',14);
2 Kommentare
Bhaskar R
am 4 Jan. 2020
% change 4 to 100 for 100 nodes
t = text(h.XData,h.YData,strsplit(num2str(1:4)),'FontSize',14);
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Graph and Network Algorithms finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!