Possible to come out with a adjacency matrix?
Ältere Kommentare anzeigen
k = 1:30;
[B,V] = bucky;
axis square
subplot(1,1,1);
subplot(1,1,1);
gplot(B(1:30,1:30),V(1:30,:),'b-');
for j = 1:30,
text(V(j,1),V(j,2),int2str(j),'FontSize',10);
end
axis equal
figure(2);
spy(B);
since spy(B) shows the non zero elements, is it possible to generate adjacency matrix?
Antworten (1)
Laurens Bakker
am 7 Mär. 2012
0 Stimmen
B is the an adjacency matrix.
1 Kommentar
jy tan
am 7 Mär. 2012
Kategorien
Mehr zu Operators and Elementary Operations finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!