Effacer les filtres
Effacer les filtres

Plot multiple edge sets on one graph?

3 vues (au cours des 30 derniers jours)
Keaton Ellis
Keaton Ellis le 27 Août 2022
Commenté : Keaton Ellis le 29 Août 2022
I have multiple adjacency matrices of digraphs that correspond to different relations over the same set of nodes. Is there a clean way for me to plot the different graphs using the same set of nodes?

Réponse acceptée

Chunru
Chunru le 28 Août 2022
% Create a graph
A = magic(4);
A(A>10) = 0;
names = {'alpha' 'beta' 'gamma' 'delta'};
G = digraph(A,names,'omitselfloops');
h1=plot(G);
% Now different edges
A(1,3)=0; A(1,2)=0;
G2 = digraph(A,names,'omitselfloops');
figure;
h2 = plot(G2)
h2 =
GraphPlot with properties: NodeColor: [0 0.4470 0.7410] MarkerSize: 4 Marker: 'o' EdgeColor: [0 0.4470 0.7410] LineWidth: 0.5000 LineStyle: '-' NodeLabel: {'alpha' 'beta' 'gamma' 'delta'} EdgeLabel: {} XData: [-0.4581 0.4581 0.9803 -0.9803] YData: [0.4581 -0.4581 0.9803 -0.9803] ZData: [0 0 0 0] Show all properties
% Ensure the node position does not change
h2.XData = h1.XData;
h2.YData = h1.YData;

Plus de réponses (0)

Catégories

En savoir plus sur Graph and Network Algorithms dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by