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