Skip to content

CycleGraph

CycleGraph(order)

returns the cycle graph with order vertices.

See

Examples

>> CycleGraph(4) // AdjacencyMatrix // Normal
{{0,1,0,1},
{1,0,1,0},
{0,1,0,1},
{1,0,1,0}}

Implementation status

  • ✅ - full supported

Github