n | Integer-Wert (größer gleich 3) |
E | Kantenmenge als -Matrix |
L | Verortung der Knoten als -Matrix |
w | Gewichtung der Kanten als -Vektor |
<html>
<head>
<script src="taramath.js"></script>
</head>
<body>
<div id="plot" style="display:inline-block;"></div>
<textarea id="output" style="width:400px; height:300px;"></textarea>
<script>
var G = Digraph.complete(7);
Digraph.plot("plot", G.E, G.L, "large", 300);
Print.init("output");
Print.object(G.w);
Print.object(G.E);
</script>
</body>
</html>