马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
信号及分析代码如下:
w=2*pi;%信号角频率
T=2*pi/w;%信号周期
t=0:T/100:8*T;%时间序列
x=sin(w*t);%成分1
figure;
subplot(3,1,1);
plot(x);
title('x=sin(w*t)');
x2=sin(20*w*t);%成分2
subplot(3,1,2);
plot(x2);
title('x=sin(20*w*t)');
y=x.*x2;%合成拍击信号
subplot(3,1,3);
plot(y);
title('y');
plot(y);
im=eemd(y,0.2,100);%eemd分解
myplotemd(im(:,2:size(im,2)),t);
ensemble number:100
white noise amplitude:0.2
请问诸位分解结果为何这么差,是我用错了,还是参数设的不对?
ensemble number:1
white noise amplitude:0也试过,结果没有太大变化。
瞬时频率也计算了,结果更是差的一塌糊涂,就不贴了。
谁能解释一下我错在哪,或者其它原因。
-----------------------------------------------------------
另:附件为何只能上传png格式,害得我试了好几个格式。 |