Mathematica combinatorica包:避免图形渲染

时间:2012-04-03 07:37:35

标签: wolfram-mathematica

我在笔记本上使用相当大的图表(我不是Mathematica专家)。

每次我使用以下指令加载或操作图形时:

g = Import["out.graphml", "Graph"] or
g = VertexAdd[g, "aux"]

图表显示在结果中,但渲染速度非常慢。

有没有办法在笔记本中禁用图形渲染?

1 个答案:

答案 0 :(得分:3)

可以通过在行尾添加分号来抑制任何Mathematica输出的图形部分。

g = Import["out.graphml", "Graph"];
g = VertexAdd(g, "aux");