How to highlight isolated nodes in a graph?

1 Ansicht (letzte 30 Tage)
Asaf McRock
Asaf McRock am 22 Feb. 2021
Bearbeitet: Asaf McRock am 24 Feb. 2021
Hello, how can I highlight isolated nodes in a graph?
I have tried the following but didn't work:
d=distances(G,(1:N)); % N is the no. of nodes
idx= ismember(d,inf(1,length(d)), 'rows');
H=plot(G,'XData',x,'YData',y);
highlight(H,idx)
Thanks!
  1 Kommentar
Asaf McRock
Asaf McRock am 22 Feb. 2021
Does distances measure the distance between the node and itself?

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Steven Lord
Steven Lord am 22 Feb. 2021
You want to highlight those nodes that are not connected to any other?
G = graph(sprand(10, 10, 0.05), 'upper');
h = plot(G);
highlight(h, degree(G) == 0, 'NodeColor', 'r')
  1 Kommentar
Asaf McRock
Asaf McRock am 22 Feb. 2021
Bearbeitet: Asaf McRock am 24 Feb. 2021
Thank you very much, Mr. Steven Lord. This is amazing, I don't know why I was complicating it.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

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!

Translated by