Biograph node label elimination. How to?
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
If I want to visualise a graph, I am making use of the view( biograph(matrix) ) function. My issue is that each node has a big label. Can I eliminate that and just have a dot? Is there any other function in matlab that draws a graph from it's adjacency matrix?
Thank you!
0 comentarios
Respuestas (1)
Lucio Cetto
el 3 de Jun. de 2014
bg.NodeAutoSize='off'
bg.ShowTextInNodes='none'
set(bg.Nodes,'Size',[1 1]);
set(bg.Nodes,'Shape','circle');
view(bg)
Be aware that biograph does not scale nicely to large and dense graphs.
0 comentarios
Ver también
Categorías
Más información sobre Graph and Network Algorithms en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!