0
gnm = GNM('synthetase')
gnm.buildKirchhoff(calphas)
gnm.getKirchhoff()
array([[ 5., -1., -1., ..., 0., 0., 0.],
[ -1., 7., -1., ..., 0., 0., 0.],
[ -1., -1., 15., ..., 0., 0., 0.],
.........,
[ 0., 0., 0., ..., 9., -1., -1.],
[ 0., 0., 0., ..., -1., 12., -1.],
[ 0., 0., 0., ..., -1,. -1., 11.]])
data = gnm.getKirchhoff()
np.savetxt('outfile.txt', data, fmt='%1.4e')
從使用上面的numpy的savetxt命令,我得到了本質上具有矩陣陣列.txt文件,但它幾乎是不可讀的,因爲它有太多的擁擠0其餘的數字。是否有可能將數組輸出到一個txt文件,以使該數組看起來像上面生成的那個,並且不包含0.000000e + 00?如何使用numpy的接收可讀基爾霍夫矩陣陣列
? – Bonifacio2
好的,謝謝你@ Bonifacio2 –