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.
当文件中只有一个值时,numpy.loadtxt() 只返回值而不是数组,如何避免?
先感谢您!
例如,文件中只有 12345
12345.6
numpy.loadtxt() 返回
代替
array([12345.6])
使用 的ndmin参数numpy.loadtxt。将其设置为 1,您将始终拥有一个至少具有一维的数组。
ndmin
numpy.loadtxt
使用ndmin=1:
ndmin=1
numpy.loadtxt(fobj, ndmin=1)
得到一个一维数组。