Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的问题涉及以下内容:我的基本任务是通过将向量绘制为条形图来可视化排序算法中的步骤。没问题,我已经有了解决方案。唯一的问题是我认为我的解决方案在某种意义上是丑陋的,我总是调用绘图函数,因此总是得到一个新窗口,导致很多。
问题:我能否以某种方式制作一个函数,将前一个图作为参数并在同一个窗口中绘制图形?或类似的东西。
谢谢
您应该只使用 Sage 中的 Jupyter 笔记本(使用 SageMath 内核)。然后,当您想要更新图表时,您可以重新评估单元格。或者,如果我正确理解了这个问题,你可以
Cell 1 - basic functions Cell 2 - function that updates graph using P += new_plot syntax Cell 3 - cell where you do the plotting
不过,我不确定我是否理解了。
之前:
您可能应该尝试使用 Sage 笔记本。