np.savetxt的具体用法
时间: 2023-06-04 16:02:54 浏览: 1224
Numpy数组的保存与读取方法
5星 · 资源好评率100%
np.savetxt是NumPy中的一个函数,用于将数组保存到文本文件中。具体用法为:
np.savetxt(fname, X, fmt='%.18e', delimiter=' ', newline='\n', header='', footer='', comments='# ')
其中,fname表示文件名(包括路径),X为要保存的数组,fmt为保存时使用的格式,delimiter为分隔符,newline为行分隔符,header为文件头(可选),footer为文件尾(可选),comments为注释符号(可选)。
例如:
import numpy as np
a = np.array([[1, 2], [3, 4]])
np.savetxt('a.txt', a, fmt='%d', delimiter=',')
上述代码将数组a保存到文件a.txt中,每个元素使用逗号隔开,格式为整数。
阅读全文