randxy(g) --- give g a random embedding in the plane
0001 function randxy(g) 0002 % randxy(g) --- give g a random embedding in the plane 0003 0004 n = nv(g); 0005 xy = sqrt(n)*randn(n,2)/2; 0006 embed(g,xy);