|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
如图所示,只有残余分量有坐标值,前几个却没有。不知道大家遇到同样的问题没?是怎么解决的?
我看了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.')
|
|