有谁知道如何更改图形属性“Norm”。一个命令;
G = SetProperty[G, "GraphProperties" -> {"Norm" -> 1}]
不像我预期的那样工作。这是图形构造函数;
G = Graph[{Property[1, "Potential" -> 11],2,3,4},
{Property[2 -> 1, "PreferenceIntensity" -> 5], 3 -> 1, 3 -> 2, 1 -> 4},
EdgeWeight -> {5, 3, 4, 2},
Properties -> {"GraphProperties" -> {"Norm" -> 5}},
VertexLabels -> "Name", ImagePadding -> 10] ;
谢谢。