CompleteGraph
CompleteGraph(order)
returns the complete graph with
order
vertices.
See
Examples
>> CompleteGraph(4) // AdjacencyMatrix // Normal{{0,1,1,1}, {1,0,1,1}, {1,1,0,1}, {1,1,1,0}}
Implementation status
- ✅ - full supported
CompleteGraph(order)
returns the complete graph with
order
vertices.
See
>> CompleteGraph(4) // AdjacencyMatrix // Normal{{0,1,1,1}, {1,0,1,1}, {1,1,0,1}, {1,1,1,0}}