Plotting two networks in the same layer using "graph"

조회 수: 9 (최근 30일)
NeGM
NeGM 2021년 3월 20일
댓글: NeGM 2021년 3월 25일
Hi Everyone,
I'd like to plot the following set of networks in which Network 1 and 2 are represented by blue and red connections respectively. Each network has it's own Adjecency matrix (A1 and A2). Ive tried using the following code. However, this seems to plot the networks separately(looks like it's double-layered) and not interconnected. I'd like to have a single layer with the edges being color coded as shown in the image below. Any help is greatly appreciated. Thank you in advance
G1 = graph(A1)
G2 = graph(A2)
figure(1)
plot(G1)
hold on
plot(G2)
hold off

채택된 답변

Shubham Rawat
Shubham Rawat 2021년 3월 23일
Hi Nelson,
You may do like this:
%creating first graph
s = [1 1 2 3 3 3 4 4 5 6 7 7 8];
t = [2 3 6 4 6 8 5 8 9 7 8 9 9];
G = graph(s,t);
%plotting
h = plot(G);
%creating second graph
s1 = [3 3 6 7 7];
t1 = [6 8 7 8 9];
G1 = graph(s1,t1);
%highlighting second graph with red color edges and linewith 1.5
highlight(h,G1,'EdgeColor','r','LineWidth',1.5);
You may look at this documentation for further
Hope this Helps!

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Networks에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by