gusucode.com > 局部均值分解源代码 难得的matlab程序代码源码 > lmd/example_shunpin.m

    s=@(t) cos(50*t+40*t.*t);
t=0:0.001:1;
y=s(t);
f=shunpin(y);
subplot(2,1,1);plot(t,y);
subplot(2,1,2);plot(t,f);