cemd_visu函数画出的imf分量图如何显示横纵坐标?
如图所示,只有残余分量有坐标值,前几个却没有。不知道大家遇到同样的问题没?是怎么解决的?
我看了cemd_visu函数的源程序,显示的部分如下:
ax_x = subplot(k+1,1,1);
set(gca,'NextPlot','replacechildren','YTick',[],'XTickLabel',{},'Box','on')
axis(A_x);
ylabel(['signal'])
T=title('Empirical Mode Decomposition, \phi/2\pi=0');
for j=1:k-1
ax_imf(j) = subplot(k+1,1,j+1);
set(gca,'NextPlot','replacechildren','YTick',[],'XTickLabel',{},'Box','on')
ylabel(['imf',int2str(j)])
axis(A_imf);
end
ax_res = subplot(k+1,1,k+1);
set(gca,'NextPlot','replacechildren','Box','on')
axis(A_res);
ylabel('res.')
据我观察,应该在这一句:set(gca,'NextPlot','replacechildren','YTick',[],'XTickLabel',{},'Box','on')中,你将其中的'YTick',[],'XTickLabel',{}去掉看一下。要是不行的话,自己试试吧,大概不会错。 请问楼主右侧的滑块调整的是什么角度啊???
页:
[1]