How to highlight isolated nodes in a graph?

조회 수: 2 (최근 30일)
Asaf McRock
Asaf McRock 2021년 2월 22일
편집: Asaf McRock 2021년 2월 24일
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
Asaf McRock
Asaf McRock 2021년 2월 22일
Does distances measure the distance between the node and itself?

댓글을 달려면 로그인하십시오.

채택된 답변

Steven Lord
Steven Lord 2021년 2월 22일
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
Asaf McRock
Asaf McRock 2021년 2월 22일
편집: Asaf McRock 2021년 2월 24일
Thank you very much, Mr. Steven Lord. This is amazing, I don't know why I was complicating it.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Graph and Network Algorithms에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by