Python 中的二进制 16

发布于 2024-09-09 23:38:32 字数 341 浏览 8 评论 0原文

当您尝试使用 struct 模块时,该模块非常有用将数据与二进制格式相互转换。然而,最近我遇到了一个使用二进制16浮点格式的文件格式规范。我浏览了 Python 文档,但找不到任何可以与其相互转换的内容。将此数据与 Python 浮点数相互转换的最佳方法是什么?

The struct module is useful when you're trying to convert data to and from binary formats. However, recently I came across a file format specification that uses the binary16 floating point format. I looked through the Python documentation, but can't find anything that can convert to and from it. What would be the best way to convert this data to/from Python floats?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

oО清风挽发oО 2024-09-16 23:38:32

你可以大致像用 C 语言那样做——也就是说,我认为,大致是这样的......:

def tofloat(b16):
  sign = -1 if b16 & 0x8000 else +1
  expo = ( b16 & 0x7C00 ) >> 10
  prec = b16 & 0x03FF
  if expo == 0:
    return sign * (2.0 ** -24) * prec
  elif expo == 0x1F:
    return sign * float('inf')
  prec |= 0x0400
  return sign * (2.0 ** (expo - 25)) * prec

You can do it roughly like you'd do it in C -- i.e., I think, roughly like this...:

def tofloat(b16):
  sign = -1 if b16 & 0x8000 else +1
  expo = ( b16 & 0x7C00 ) >> 10
  prec = b16 & 0x03FF
  if expo == 0:
    return sign * (2.0 ** -24) * prec
  elif expo == 0x1F:
    return sign * float('inf')
  prec |= 0x0400
  return sign * (2.0 ** (expo - 25)) * prec
一枫情书 2024-09-16 23:38:32

这个人的博客文章给出了一个实现和蟒蛇。他使用 struct 模块,然后手动对其进行解码。转换并不那么复杂。

This guy's blog post gives an implementation in both and python. He uses the struct module, then decodes it manually. It is not all that complicated a conversion.

金兰素衣 2024-09-16 23:38:32

快速谷歌搜索出现了http://packages.python.org/bigfloat/,上面写着有一个用于操作binary16浮点数的上下文。不过,我自己对这个包并不熟悉,所以我无法告诉您有关如何使用它的任何信息(至少,您可以自己阅读文档)。

A quick Google search turned up http://packages.python.org/bigfloat/ which says it has a context for manipulation of binary16 floating-point numbers. I'm not familiar with the package myself, though, so I couldn't tell you anything about how to use it (at least, nothing more than you can read yourself in the documentation).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文