WRITEGRAPH Write a graph to an ascii file.
writeGraph(NODES, EDGES, FILENAME)
Example
% create a basic graph and save it to a file
nodes = [10 10;20 10;10 20;20 20;27 15];
edges = [1 2;1 3;2 4;2 5;3 4;4 5];
writeGraph(nodes, edges, 'simpleGraph.txt');
See also
readGraph
------
Author: David Legland
e-mail: david.legland@grignon.inra.fr
Created: 2014-01-20, using Matlab 7.9.0.529 (R2009b)
Copyright 2014 INRA - Cepia Software Platform.
Package: matgeom