c# - 将 MBF 单精度和 double 转换为 IEEE

标签 c# vb.net ieee-754 mbf

Follow-Up available: There's a follow-up with further details, see Convert MBF to IEEE.

我有一些仍在使用的遗留数据,读取二进制文件不是问题,数字格式才是问题。所有 float 均以 MBF 格式保存(单精度 double )。我找到了a topic about that on the MSDN boards但那个只处理单一值。我还想尽可能远离 API 调用。

有人有 double 的解决方案吗?

编辑:以防万一有人需要它,这里是我最终得到的 VB.NET 代码(它符合 Option Strict )(可以随意将其转换为C# 并在其中编辑):

''' <summary>Converts a MBF Single to an IEEE Single</summary>
''' <param name="src">The MBF Single value</param>
''' <returns>The converted IEEE Single value</returns>
''' <remarks>Here can find some further information about this topic: http://en.wikipedia.org/wiki/Microsoft_Binary_Format http://support.microsoft.com/kb/140520</remarks>
Public Shared Function MTIS(ByVal src As Single) As Single
    Return MTIS(BitConverter.GetBytes(src), 0)
End Function

''' <summary>Converts a MBF Single to an IEEE Single</summary>
''' <param name="src">The source array</param>
''' <param name="startIndex">The start index at which the Single starts</param>
''' <returns>The converted IEEE Single value</returns>
''' <remarks>Here can find some further information about this topic: http://en.wikipedia.org/wiki/Microsoft_Binary_Format http://support.microsoft.com/kb/140520</remarks>
Public Shared Function MTIS(ByVal src() As Byte, ByVal startIndex As Integer) As Single
    Dim mbf(3) As Byte
    Dim ieee(3) As Byte

    Array.Copy(src, startIndex, mbf, 0, 4)

    If mbf(3) <> 0 Then
        Dim sign As Byte = mbf(2) And ToByte(&H80)
        Dim exp As Byte = mbf(3) - ToByte(2) ' -1-128-127 '

        ieee(3) = ieee(3) Or sign
        ieee(3) = ieee(3) Or exp >> 1
        ieee(2) = ieee(2) Or exp << 7
        ieee(2) = ieee(2) Or mbf(2) And ToByte(&H7F)
        ieee(1) = mbf(1)
        ieee(0) = mbf(0)
    End If

    Return BitConverter.ToSingle(ieee, 0)
End Function


''' <summary>Converts a MBF Double to a IEEE Double</summary>
''' <param name="src">The MBF Double value</param>
''' <returns>The converted IEEE Double value</returns>
''' <remarks>Here can find some further information about this topic: http://en.wikipedia.org/wiki/Microsoft_Binary_Format http://support.microsoft.com/kb/140520</remarks>
Public Shared Function MTID(ByVal src As Double) As Double
    Return MTID(BitConverter.GetBytes(src), 0)
End Function

''' <summary>Converts a MBF Double to a IEEE Double</summary>
''' <param name="src">The source array</param>
''' <param name="startIndex">The start index at which the Double starts</param>
''' <returns>The converted IEEE Double value</returns>
''' <remarks>Here can find some further information about this topic: http://en.wikipedia.org/wiki/Microsoft_Binary_Format http://support.microsoft.com/kb/140520</remarks>
Public Shared Function MTID(ByVal src() As Byte, ByVal startIndex As Integer) As Double
    Dim mbf(7) As Byte
    Dim ieee(7) As Byte

    Array.Copy(src, startIndex, mbf, 0, 8)

    If mbf(7) <> 0 Then
        Dim sign As Byte = mbf(6) And ToByte(&H80)
        Dim exp As Int16 = mbf(7) - 128S - 1S + 1023S

        ieee(7) = ieee(7) Or sign
        ieee(7) = ieee(7) Or ToByte(exp >> 4 And &HFF)
        ieee(6) = ieee(6) Or ToByte(exp << 4 And &HFF)

        For i As Integer = 6 To 1 Step -1
            mbf(i) <<= 1
            mbf(i) = mbf(i) Or mbf(i - 1) >> 7
        Next
        mbf(0) <<= 1

        For i As Integer = 6 To 1 Step -1
            ieee(i) = ieee(i) Or mbf(i) >> 4
            ieee(i - 1) = ieee(i - 1) Or mbf(i) << 4
        Next
        ieee(0) = ieee(0) Or mbf(0) >> 4
    End If

    Return BitConverter.ToDouble(ieee, 0)
End Function

最佳答案

this Wiki 页面上有一些不同代码示例的链接,用于在 C、C++ 和 Python 中执行此操作。

其中一个或多个应该相对容易转换为适合您的语言。

关于c# - 将 MBF 单精度和 double 转换为 IEEE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2973913/

相关文章:

vb.net - 如何覆盖默认的 SQL 迁移生成器?

asp.net - XPath 不返回节点值 ASP.NET 4.5

javascript - 有什么办法可以在它的 64 位浮点 IEEE754 表示中看到一个数字

c# - 访问其他类变量

c# - 从不同程序集中反序列化具有相同名称的类

c# - 异步填充c#字典

c - C语言中的IEEE 754转十进制

c# - 我将如何持续监听带有 GUI 的端口?

javascript - 在 aspx 输入字段上/中插入文本并设置焦点?

c++ - 如果 ieeefloat64 变量未在 C++ 中初始化,会发生什么情况?