woshixixigutou 发表于 2014-5-21 09:48

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.')

airazor 发表于 2014-9-27 20:31

据我观察,应该在这一句:set(gca,'NextPlot','replacechildren','YTick',[],'XTickLabel',{},'Box','on')中,你将其中的'YTick',[],'XTickLabel',{}去掉看一下。要是不行的话,自己试试吧,大概不会错。

程分析 发表于 2018-3-5 14:41

请问楼主右侧的滑块调整的是什么角度啊???
页: [1]
查看完整版本: cemd_visu函数画出的imf分量图如何显示横纵坐标?