GraphTheory
DrawNetwork
Calling Sequence
Parameters
Description
Examples
DrawNetwork(G)
DrawNetwork(G, st)
DrawNetwork(G, S, T)
DrawNetwork(G, S, T, st)
G
-
graph
st
(optional) 'horizontal', 'vertical'
S
(optional) vertex
T
DrawNetwork displays the vertices, arcs and vertex labels of a network. A network is a directed graph with at least one vertex with indegree 0 (the source) and at least one vertex with outdegree 0 (the sink).
If you specify S and T, the graph is displayed with S as the main source and T as the main sink.
The network can be displayed either horizontally or vertically.
Remaining options are passed on to the DrawGraph command.
with⁡GraphTheory:
N≔Digraph⁡1,2,1,3,2,4,3,4
N≔Graph 1: a directed graph with 4 vertices and 4 arc(s)
DrawNetwork⁡N
DrawNetwork⁡N,horizontal
G≔Digraph⁡1,3,2,3,3,4,3,5:
IsNetwork⁡G
1,2,4,5
DrawNetwork⁡G,2,5
See Also
Digraph
IsNetwork
MaxFlow
RandomGraphs[RandomNetwork]
Download Help Document