Code covered by the BSD License  

Highlights from
Matgraph

from Matgraph by Ed Scheinerman
Toolbox for working with simple, undirected graphs

Description of isfull
Home > matgraph > @graph > isfull.m

isfull

PURPOSE ^

isfull(g) --- check if g's adjacency matrix is full

SYNOPSIS ^

function yn = isfull(g)

DESCRIPTION ^

 isfull(g) --- check if g's adjacency matrix is full

CROSS-REFERENCE INFORMATION ^

This function calls:
  • issparse issparse(g) --- check if g's adjacency matrix is sparse
This function is called by:
  • add add --- add edge(s) to the graph
  • display display(g) --- display basic information about a graph object
  • resize resize(g,n) --- change the number of vertices in g to n

SOURCE CODE ^

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

Generated on Thu 13-Mar-2008 14:23:52 by m2html © 2003

Contact us at files@mathworks.com