• matlab fread


    Matlab中fread函数用法
       “fread”以二进制形式,从文件读出数据。
    语法1:[a,count]=fread(fid,size,precision)
    语法2:[a,count]=fread(fid,size,precision,skip)
    size:    不指定     :到尾返回读。
              N         : 读出N个数据,构成列向量。
              inf       : 读出fid指向的打开的文件的全部数据。
              [M,N]     : 读出N个数据,构成列向量,填入M*N矩阵
        precision(精度)
    precision(精度)规定了以浮点数、整型数、字符读出时位。matlab 的precision(精度)的表达式与c语言、fortran语言、是一致的。不规定precision(精度),则字符默认为: ucher、则数值默认为:双精度 。
          以下precision(精度)将保证读出具有一致的体积。
    MATLAB           C or Fortran             Descriphon(精度)
    'char'               'char*l'                      8 位,字符型
    'uchar'             'unsigned char'          8 位 
    'schar'              'signed char'             8 位,字符型
    'int8'                'integer*1'                8 位,整型数
    'intl6'               'integer*2'                16 位,整型数.
    'int32'              'integer*4'                32 位,整型数.
    'int64'              'integer*8'                64 位,整型数
    'uint8'              'integer*l'                 8 位 
    'uintl6'             'integer*2'                16 位 
    'uint32'            'integer*4'                32 位 
    'uint64'            'integer*8'                64 位 
    'float32'           'real*4'                   浮点数, 32 位
    'float64'           'real*8'                   浮点数, 32 位
     
    以下precision(精度)将不保证读出具有一致的体积。
    MATLAB           C or Fortran            Descriphon(精度)
    'short'              'short'                     16 位,整型数
    'int'                  'int'                         32 位,整型数
    'long'               'long'                       32 (64) 位,整型数
    'uShort'           'Unsigned short'        16 位 
    'uint'               'Unsigned int'            32 位 
    'ulong'            'unsigned long'          32 (64) 位    
    'float'              'float'                      浮点数, 32 位
    'double'           'double'                  浮点数, 64 位
     
    以下precision(精度)规定读出指定的体积n。
    'bitN'          N位,整型数      1<=N<=64
    'ubitN'         N位,            1<=N<=64
     
     
    http://blog.csdn.net/fall221/article/details/7299712
     
     
    http://wenku.baidu.com/link?url=skw8ZoG-UQsYZneQnZThoLXj88eWXUHCOamp-lVrhDJOMLp365PMtrteyem0eUtmqnMvn8J6MgD7OceR9jPfMm9d7QWKTbJm1Nuxspipiy3
     
  • 相关阅读:
    Tomcat 性能优化
    Centos下Tomcat 安装Apache Portable Runtime
    单机多实例Tomcat部署
    Maven 常用命令, 备忘
    IntelliJ IDEA运行tomcat项目编码错误, 及如何指定tomcat编码
    多个mapper location时, mybatis spring的自动扫描配置
    X200s,Debian 8(Jessie) 安装流水帐
    dubbo2.5.3 与spring 3.1.x 冲突
    IntelliJ Idea14 创建Maven多模块项目
    为EXSi5.5上的Centos虚机增加硬盘容量
  • 原文地址:https://www.cnblogs.com/tiandi/p/4396659.html
Copyright © 2020-2023  润新知