Skip to content

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

Github