how to draw Bipartite Matrices and Projection Matrices.

2 次查看(过去 30 天)
Hi
could you please let me know how can I draw the graphs like attached file?

采纳的回答

Karim
Karim 2022-7-11
such figures can be generated with the spy command. See below for an attempt to produce the top left figure using a bit of random data
A = zeros(450,450);
B = rand(450,800) < 0.01;
C = zeros(800,800);
M = [A B; B',C];
figure
spy(M)

更多回答(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