• 大小: 9KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-28
  • 语言: Matlab
  • 标签: matlab  

资源简介

matlab自动提取figure中的数据-figexportdata.rar
在matlab应用的过程中,发现网上所提供figure数据的方法只能提取一副图像的一条曲线,对于利用 subplot所绘制的多子图多曲线好像都不太好用,经过仔细研究,我将这方法写成了一个文件的形式,在平时的数据提取中比较有用,因此和各位朋友共享,使用方法请见m文件说明

资源截图

代码片段和文件信息

function figexport_tb
%%%%This file is edited by Jinguang Hao Jinguang_hao@126.com
%%%%The purpose of the m files is to exact the data from figure file
%%%unlike the common methods on the website such as the following code :
%%%%h =
%%%%findobj(gca‘Type‘‘line‘);xdata=get(h‘XData‘);ydata=get(h‘YData‘);
%%%(Because the method only can exact the data from one figure with one curve and under the subfigure senario the method can not work)
%%%The provided files (processfig.p figdataexport.p and the figexport_tb.m) can overcome the above drawbacks;
%%%%In addtion three different figure files are also given for test
%%%%purpose.
%%%If any bugs or questions please contact me by email.


% %%%generate figures under different scenarios
% x=0:10;
% y0=cos(0.2*pi*x);
% y1=sin(0.2*pi*x);
% y2=0.5*cos(0.2*pi*x);
% y3=0.5*sin(0.2*pi*x);
% %%%scenario 1: plot one curve
% figure(1);
% plot(xy0);
% %%%scenario 2: plot two curves in the figure
% figure(2);
% plot(xy0xy1);
% %%scenario 3: subplot the 4 figures and two curves in each subfigure
% figure(3);
% subplot(211);
% plot(xy0xy1);
% subplot(212);
% plot(xy2xy3);

%%%execute the figdtaexport function
figdataexport(‘test2.fig‘);
%%%and then plot the figure to verify the function exatracting the variable
%%%named ‘curve***‘ in workspace
%%%%%example for test3.fig
%%%%%plot(curve001(1:)curve001(2:)curve002(1:)curve002(2:));
%%%




end


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        161  2015-03-01 13:53  figdataexport.p

     文件       1231  2015-03-01 13:58  figexport_tb.asv

     文件       1466  2015-03-01 14:00  figexport_tb.m

     文件        419  2015-03-01 13:52  processfig.p

     文件       1573  2015-03-01 13:44  test1.fig

     文件       1896  2015-03-01 13:44  test2.fig

     文件       3215  2015-03-01 13:44  test3.fig

----------- ---------  ---------- -----  ----

                 9961                    7


评论

共有 条评论