graph and conncomp examples

3 visualizaciones (últimos 30 días)
Pa342
Pa342 el 22 de Sept. de 2019
Comentada: Pa342 el 23 de Sept. de 2019
In the example given for conncomp it has this:
graph([1 1 4],[2 3 5],[1 1 1],6);
I do not understand how this leads to the graph which is displayed. The documentation for graph is not clear about this either. Can anyone explain how graph actually operates in this case in a really simple way?

Respuesta aceptada

KALYAN ACHARJYA
KALYAN ACHARJYA el 22 de Sept. de 2019
G=graph([1 1 4],[2 3 5],[1 1 1],6);
plot(G);
3456.png
  5 comentarios
Walter Roberson
Walter Roberson el 22 de Sept. de 2019
G = graph(S,T,WEIGHTS,NUM) specifies the number of nodes of the graph
with the numeric scalar NUM. NUM must be greater than or equal to the
largest elements in S and T.
So you are using weights 1, 1, and 1 for the edges, and you are telling it that there are 6 nodes. You want to tell it the number of nodes because your edge specifications do not necessarily include any link to or from all of your nodes.
Pa342
Pa342 el 23 de Sept. de 2019
Thanks Walter, I understand it now.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Graph and Network Algorithms en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by