侧边栏壁纸
博主头像
Angel博主等级

行动起来,活在当下

  • 累计撰写 20 篇文章
  • 累计创建 8 个标签
  • 累计收到 1 条评论

目 录CONTENT

文章目录

单精度浮点数转换

Angel
2023-11-07 / 0 评论 / 0 点赞 / 55 阅读 / 1449 字
温馨提示:
本文最后更新于 2023-11-07,若内容或图片失效,请留言反馈。部分素材来自网络,若不小心影响到您的利益,请联系我们删除。

单精度浮点数转换十进制数据

function getFloat (dataL, dataH) {
    const intSign = Math.floor(dataL / 32768)
    const intSignRest = Math.floor(dataL % 32768)
    const intExponent = Math.floor(intSignRest / 128)
    const intExponentRest = intSignRest % 128
    const faDigit = (intExponentRest * 65536 + dataH) / 8388608
    return Math.pow(-1, intSign) * Math.pow(2, intExponent - 127) * (faDigit + 1)
}
0

评论区