| Author |
Comment/Response |
john
|
05/31/08 11:10am
I want to make a complete graph with 3 verticles and then create a sub graph with one edge less from the complete graph.
why dosn't the code shows the sub graph?
complete = CompleteGraph[3];
ShowGraph[complete, VertexNumber -> On];
subGraph = complete;
subGraph = Drop[Edges[subGraph], 1];
ShowGraph[subGraph]
URL: , |
|