spy(g) --- display the "spy" of g's adjacency matrix
SYNOPSIS
function spy(g)
DESCRIPTION
spy(g) --- display the "spy" of g's adjacency matrix
CROSS-REFERENCE INFORMATION
This function calls:
spy spy(g) --- display the "spy" of g's adjacency matrix
This function is called by:
spy spy(g) --- display the "spy" of g's adjacency matrix
SOURCE CODE
0001 function spy(g)
0002 % spy(g) --- display the "spy" of g's adjacency matrix
0003
0004 global GRAPH_MAGIC
0005 spy(GRAPH_MAGIC.graphs{g.idx}.array);