wolffd@0: function g = drawNetwork(varargin) wolffd@0: % Visualize a graph in a Matlab figure window by specifying an wolffd@0: % adjacency matrix and optionally node labels, descriptions, colors and the wolffd@0: % the layout algorithm. The best layout algorithms require that graphViz be wolffd@0: % installed, available free at . wolffd@0: %% wolffd@0: % Type doc graphViz4Matlab for more details. wolffd@0: wolffd@0: g = graphViz4Matlab(varargin{:}); wolffd@0: wolffd@0: end