如何将邻接矩阵保存到文件中?

How to save adjacency matrix to a file?

我有一个这样的图的邻接矩阵:

我想将这个矩阵按原样保存在 csv 或 txt 文件中,我应该怎么做?

我试过以下link

 Gives me error

其他人没有给我正确的输出

我需要你的帮助

谢谢

给你:

import numpy as np
# create random adjacency matrix
A = np.random.randint(0,2,(10,10))
A[np.arange(10),np.arange(10)] = 1
# save to .txt file
filename='adjacency_matrix.txt'
np.savetxt(filename,A)