how to draw Bipartite Matrices and Projection Matrices.
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
HASAN JAHANIFAR
il 11 Lug 2022
Commentato: HASAN JAHANIFAR
il 11 Lug 2022
Hi
could you please let me know how can I draw the graphs like attached file?

0 Commenti
Risposta accettata
Karim
il 11 Lug 2022
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)
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Graph and Network Algorithms in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!