截取mat文件一部分数据

截取mat文件一部分数据

load('C:\Users\wym\Desktop\width(1)\mat\width6.mat');
plot(Width(:,2));

width6 = Width(300:995,1:2);
plot(width6(:,2));

 savePath = ['C:\Users\wym\Desktop\width(1)\截取\' '6.mat'];
 save(savePath,'width6');  
    原文作者:An牙满
    原文地址: https://blog.csdn.net/qq_37473115/article/details/106937370
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞