display_sift.m

来自「经改进的希尔伯特——黄分解」· M 代码 · 共 25 行

M
25
字号
function  display_sift(t,r,m,md,k,sd,s,nbit,sdt,sd2t,minbl,maxbl,midbl)%PLAY Summary of this function goes here%  Detailed explanation goes heresubplot(3,1,1)plot(t,md);hold on;plot(t,maxbl,'-k');plot(t,minbl,'-k');plot(t,midbl,'r');title(['IMF ',int2str(k),';   iteration ',int2str(nbit),' before sifting']);set(gca,'XTick',[])hold  offsubplot(3,1,2)plot(t,sd)hold onplot(t,sdt,'--r')plot(t,sd2t,':k')title('stop parameter')set(gca,'XTick',[])hold offsubplot(3,1,3)plot(t,r-m)title('residue');pause(0.001)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?