Home > matgraph > max_available.m

max_available

PURPOSE ^

num_available --- maximum number of graphs we can hold in this system

SYNOPSIS ^

function max_graphs = max_available

DESCRIPTION ^

 num_available --- maximum number of graphs we can hold in this system

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function max_graphs = max_available
0002 % num_available --- maximum number of graphs we can hold in this system
0003 
0004 if ~graph_system_exists
0005     error('Graph system has not been initialized.')
0006 end
0007 
0008 global GRAPH_MAGIC;
0009 max_graphs = GRAPH_MAGIC.ngraphs;

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