BinaryReadList读取二进制bin文件

作者: Shalom小白 | 来源:发表于2017-03-16 14:44 被阅读78次

    读取命令BinaryReadList

    Mathematica的一行命令读取二进制bin文件:

    BinaryReadList["file","type"]
    

    其中,file为bin文件的路径地址;type为bin文件的存储格式。

    type的值有:

    • "Byte" 8位无符号整数
    • "Character8" 8位字符
    • "Character16" 16位字符
    • "Complex64" IEEE 単精度复数
    • "Complex128" IEEE 双精度复数
    • "Complex256" IEEE 四精度复数
    • "Integer8" 8位符号整数
    • "Integer16" 16位符号整数
    • "Integer32" 32位符号整数
    • "Integer64" 64位符号整数
    • "Integer128" 128位符号整数
    • "Real32" IEEE 単精度实数
    • "Real64" IEEE 双精度实数
    • "Real128" IEEE 四精度实数
    • "TerminatedString" 由8位字符组成的以null结束的字符串
    • "UnsignedInteger8" 8位无符号整数
    • "UnsignedInteger16" 16位无符号整数
    • "UnsignedInteger32" 32位无符号整数
    • "UnsignedInteger64" 64位无符号整数
    • "UnsignedInteger128" 128位无符号整数

    Reference

    相关文章

      网友评论

        本文标题:BinaryReadList读取二进制bin文件

        本文链接:https://www.haomeiwen.com/subject/bdhjnttx.html