gpt4 book ai didi

python - 类型错误 : data type not understood in Python fromfile

转载 作者:行者123 更新时间:2023-11-28 16:31:30 25 4
gpt4 key购买 nike

我正在尝试使用以下命令读取二进制文件:

import numpy as np
fid = open(filename, 'rb')
ax = np.fromfile(fid, dtype=np.int32, count=1)

这个命令工作正常,但是

ay = np.fromfile(fid, dtype=np.char, count=16)

给出类型错误:数据类型不被理解。知道如何将其读作字符类型吗?

最佳答案

您想要的数据类型不存在,np.char 实际上是a module .

看看 numpy datatypes ,您可以使用 np.byte 覆盖您的字节表示,这是一个 np.int8

关于python - 类型错误 : data type not understood in Python fromfile,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31475077/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com