我想在Matlab图中找到两点之间的值范围。我做了这个数字
使用plot()
。现在这个数字将用作输入,在输出中我想要点A
和B
之间的值。
注意:图中提到的点A
和B
使用的是不属于情节的Photoshop,只是为了清楚地说明问题。
答案 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);