isfull(g) --- check if g's adjacency matrix is full
0001 function yn = isfull(g) 0002 % isfull(g) --- check if g's adjacency matrix is full 0003 yn = ~issparse(g);