在Matlab中查找值范围图

时间:2014-08-01 06:42:10

标签: matlab plot matlab-figure

我想在Matlab图中找到两点之间的值范围。我做了这个数字

enter image description here

使用plot()。现在这个数字将用作输入,在输出中我想要点AB之间的值。

注意:图中提到的点AB使用的是不属于情节的Photoshop,只是为了清楚地说明问题。

1 个答案:

答案 0 :(得分:1)

hc=get(gca,'children');
data=get(hc,{'xdata','ydata'});

t=data{1};

y=data{2};

tA=250;tB=1000; %tA is starting Point and tB is the last point of data as ur figure

yinterval=y(t>=tA & t<=tB);

display(yinterval);