以下代碼創建了某個計算的圖表。我的問題是,儘管分母中的術語順序很好,但在應用Plus之後,它們會被任意地重新排列。任何建議如何強制原始訂單被保留?防止「Plus」重新排列東西
http://yaroslavvb.com/upload/ind-sets-grid.png
r[i_] := Floor[(i - 1)/n] + 1; c[i_] := Mod[i, n, 1]; adj[a_, b_] := Abs[r[a] - r[b]] + Abs[c[a] - c[b]] == 1; indsetQ[s_] := Not[Or @@ (adj @@@ Subsets[s, {2}])]; indsets[k_] := Select[Subsets[Range[n^2], {k}], indsetQ]; twoColorGraph[g_, seen_, lbl_] := Module[{radius = .22}, vcoords = # -> {c[#], n - r[#]} & /@ Range[n^2]; fv = Function[{p, v}, {EdgeForm[Thick], If[MemberQ[seen, v], Pink, White], Disk[p, radius]}]; GraphPlot[g, VertexLabeling -> True, VertexRenderingFunction -> fv, PlotLabel -> Style[lbl, 20], LabelStyle -> Directive[Bold], VertexCoordinateRules -> vcoords, ImageSize -> 80] ]; n = 2; g = Array[Boole[adj[#1, #2]] &, {n^2, n^2}]; weight[set_] := Times @@ (Subscript[\[Lambda], c[#], r[#]] & /@ set); denominator = twoColorGraph[g, #, weight[#]] & /@ Join @@ (indsets[#] & /@ Range[2]); numerator = twoColorGraph[g, {1}, weight[{1}]]; Style[numerator/(Plus @@ denominator), FontSize -> 30]
這是一個重複,意圖,如果不是形式,另一個問題(http://stackoverflow.com/questions/3947071/controllingorder-of-variables-in-an-expression)。否則,我會給你一個單獨的圖形+1。什麼是計算? – rcollyer 2010-11-05 19:38:36
是的,這是相似的。那裏的建議是定義像「myPlus」這樣的不是無序的自己的功能,但是我怎樣才能讓它與「Plus」一樣呈現? – 2010-11-05 19:42:07
計算是在有限網格(即具有硬核自排斥和硬核對相互作用的宏規範氣體)上找到每個現場佔據核心排斥性局部氣體的概率 – 2010-11-05 20:12:19