bucky(g) --- overwrite g with the Buckyball graph (and give a nice embedding).
0001 function bucky(g) 0002 % bucky(g) --- overwrite g with the Buckyball graph (and give a nice 0003 % embedding). 0004 0005 [A,xyz] = bucky; 0006 set_matrix(g,full(A)); 0007 embed(g,2*xyz(:,1:2));