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.
我在 Jupyter 中使用 Python 编写元胞自动机,最后我基本上是在绘制一个巨大的(例如 100*100)数组/列表。问题是数组不能在 Jupyter 中绘制为正方形,因为由于矩阵的大尺寸,每一行都被分割了,有没有办法(保存为某种格式?)查看完整的矩阵而不扭曲形状?我试过 Sublime,但它的打印界面也太小了。
您可以像这样保存数组:
array = numpy.random.randint(2, size=(100,100)) numpy.savetxt('array.csv', array, delimiter=';', fmt='%1d')
这会将您的数组保存到一个名为 array.csv 的文件中,您可以使用任何编辑器或办公套件打开该文件。