如何将np数组转换回具有特定dtype的二进制?

时间:2016-02-15 18:15:52

标签: 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',我不知道如何使用它的例子。你能给出写回来的确切代码吗?

0 个答案:

没有答案