CycleGraph
CycleGraph(order)returns the cycle graph with
ordervertices.
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
CycleGraph(order)returns the cycle graph with
ordervertices.
See
>> CycleGraph(4) // AdjacencyMatrix // Normal{{0,1,0,1}, {1,0,1,0}, {0,1,0,1}, {1,0,1,0}}