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.
我有一个带有一堆数字的文本文件,其中每 32 个条目包含换行符。我想使用 Numpy 读取这个文件 aa 列向量。如何使用numpy.loadtxt和忽略换行符,使生成的数组大小为 1024x1 而不是 32x32?
numpy.loadtxt
只需使用loadtxt和reshape(或ravel)结果数组。
loadtxt
reshape
ravel