matlab读12bit数据

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了matlab读12bit数据相关的知识,希望对你有一定的参考价值。

参考技术A 1、将0,max区间划分为12份,可以均分,也可以用对数来分。
2、键入命令d等于max除以12,即可读取12bit数据。MATLAB是美国MathWorks公司出品的商业数学软件,用于数据分析、无线通信、深度学习、图像处理与计算机视觉、信号处理、量化金融与风险管理、机器人,控制系统等领域。

matlab读.mat写入txt

问题:

读VehicleInfo.mat里面的数据,存入一个.txt文件中

技术图片

代码:

load(VehicleInfo.mat);
sz = size(VehicleInfo);
nums = sz(1);

anno = VehicleInfo;
fout=fopen(bit_vehicles_anno.txt, w);
for i=1:nums
    name = anno(i).name;
    height = anno(i).height;
    width = anno(i).width;
    vehicles = anno(i).vehicles;
    nVehicles = anno(i).nVehicles;
    for j=1:nVehicles
        left = num2str(vehicles(j).left);
        top = num2str(vehicles(j).top);
        right = num2str(vehicles(j).right);
        bottom = num2str(vehicles(j).bottom);
        cls_name = vehicles(j).category;
        %fprintf(fout, %s;%d;%d;%d;%d;%d;%d;%s
,
        %    name, height, width, left, top, right, bottom, cls_name);
        outline = [name, ;, left, ;, top, ;, right, ;, bottom, ;, cls_name, 
];
        fprintf(fout, outline);
    end
end
fclose(fout);

 

以上是关于matlab读12bit数据的主要内容,如果未能解决你的问题,请参考以下文章

matlab读.mat写入txt

对12bit的AD建模后matlab写程序对其进行FFT,计算SNR并输出频谱图,程序该怎么写???急

matlab读串口数据问题

MATLAB - MATLAB 32bit 和 64bit 之间的交互

matlab串口接收数据的问题

MATLAB连接MySQL数据库