资源简介
matlab自动提取figure中的数据-figexportdata.rar
在matlab应用的过程中,发现网上所提供figure数据的方法只能提取一副图像的一条曲线,对于利用 subplot所绘制的多子图多曲线好像都不太好用,经过仔细研究,我将这方法写成了一个文件的形式,在平时的数据提取中比较有用,因此和各位朋友共享,使用方法请见m文件说明
在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
相关资源
- 公共汽车悬挂系统模型的MATLAB仿真程
-
原创有源电力滤波器simuli
nk仿真模型 - Matlab有关车牌汉字识别-标准汉字的自
- Matlab中蚁群算法求解连续函数优化的
- MATLAB控制系统设计仿真应用很好的源
-
MATLAB SIMUli
nk建模与仿真精讲.part28 - 用matlab编写的流体计算和传热程序-
- MAtlab有限元程序-matlab 有限元源程序
- 网上找的BP神经网络算法程序和大家分
-
花了一下午simuli
nk中对同个一级倒立 -
APF中的谐波检测的SIMUli
nk仿真-APF1 - 基于蚁群算法和神经网络匹配算法的
- 原创毕业设计完工贴出来和大家分享
- 广度优先搜索 matlab
- matlab代码读电离层TEC文件
- 兰顿蚂蚁 MATLAB实现代码
- SVM(MATLAB).zip
- matlab开发-sigmoid
- matlab开发-信号平滑移动平均滤波器
- matlab开发-同步发电机的详细模型,包
- matlab开发-多层反向传播神经网络
- matlab开发-自适应调制fdmltegeneralcode
- matlab开发-Parrotminirones的模拟支持包
- matlab开发-FBM调制解调
- matlab开发-nnsysid
- matlab开发-使用gnewton-raphson方法查找任
-
matlab开发-带HFSSli
nk的RotmanLens设计 - matlab开发-SelfTuningRegulatorsSTR
- matlab开发-UR5控制Matlab
- 数据转换/信号处理中的基于Matlab 单边
评论
共有 条评论