Eliminating an entire point on a plot both for data and on the axis
1 次查看(过去 30 天)
显示 更早的评论
I have a graph of power spectrum data. As is the case with notch filters, there is a dip at 60Hz for the filter. I am wondering if when I plot it, there is a way to completely excise out 60 on the X-axis so that both data and X-Axis omit 60?
2 个评论
dpb
2017-5-5
What, specifically do you mean here by "omit"? Not show the data for some range about 60 Hz or to somehow truncate some range of the axis entirely? If the latter, what do you intend to do about joining the data regarding it's true position?
采纳的回答
dpb
2017-5-6
Well, the most trivial would be
i60=60/df; % index of 60 hz in array
idel=delF/df; % the delta indices for the range
x(i60-idel:i60+del)=nan; % NaN data doesn't plot
plot(x,y) % plot the data
xt=get(gca,'xtick'); % retrieve tick values
i60t=find(xt==60); % assume is tick at 60
set(gca,'xtick',[xt(1:i60t-1) xt(i60t+1:end)])
The latter part on the axes above leaves a gap at that location.
comes from
axes
xlim([0 100])
xt=get(gca,'xtick');
ix=find(xt==60);
set(gca,'xtick',[xt(1:ix-1) xt(ix+1:end)])
You could always then draw a little cross line at the point to show break or somesuch else if need more emphasis yet.
0 个评论
更多回答(1 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!