提取MATLAB fig的数据

  • Post author:
  • Post category:其他


open('运行结果.fig');
lh = findall(gca, 'type', 'line');% 如果图中有多条曲线,lh为一个数组
xc = get(lh, 'xdata');            % 取出x轴数据,xc是一个元胞数组
yc = get(lh, 'ydata');            % 取出y轴数据,yc是一个元胞数组
figure(2)
for i=1:length(xc)
    plot(xc{i},yc{i}/max(yc{i}));
    hold on;
end



版权声明:本文为weixin_40653652原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。