标签: numpy binary type-conversion
我设法用
dt = np.dtype([('ID','i4'), ('OriType',('S1')), 'DesType',('S1')), ('VOT','f4')]) records = np.fromfile('mybinary.bin', dt)
我怎么写回来?我尝试使用np.tofile(),但它说它不能以二进制模式转换,输入也是format='%s',我不知道如何使用它的例子。你能给出写回来的确切代码吗?
np.tofile()
format='%s'