How to find graph density in MATLAB for a given graph G?
10 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Nadatimuj
el 2 de Jul. de 2021
Comentada: Nadatimuj
el 3 de Jul. de 2021
I want to find the density of a graph in matlab. Is there any function to find that? Thanks.
0 comentarios
Respuesta aceptada
Kelly Kearney
el 2 de Jul. de 2021
You can simply calculate the number of non-zero elements relative to total elements in the adjacency matrix:
nnz(adjacency(G))./numel(adjacency(G))
3 comentarios
Steven Lord
el 3 de Jul. de 2021
You can use the numnodes and numedges functions on a graph or digraph to get the numbers of nodes or edges respectively.
Más respuestas (0)
Ver también
Categorías
Más información sobre Graph and Network Algorithms en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!