This is probably a silly question, but I can't find an answer.
I have various adjacency matrices and I want to 1) draw graphs of them, 2) determine the number of automorphisms of the graph, and 3) determine the automorphisms of the graph.
I can do 1)
Here is my code:
---
x = AdjacencyGraph[ *(adjacency matrix goes here)* ]
GraphPlot[x,VertexLabeling->True]
GraphData[x,"AutomorphismCount"]
Automorphisms[x] //TraditionalForm
---
Line 2 does what I want it to do, but line 3 and 4 don't do what I want them to do.
Can anybody help me?
Thank you in advance.