full full(g) --- convert internal storage for g to full
set_matrix set_matrix(g,A) --- set g to be the graph specificed in the matrix A.
This function is called by:
bucky bucky(g) --- overwrite g with the Buckyball graph (and give a nice
SOURCE CODE
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));