|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
谁有emd包,请帮忙给我一个,我做的程序老出错!!
别人电脑上可以,我的就出错 为什么啊?
>> clear;
t=1:500;
t=t*1/2000;
x=sin(2*pi*20*t+5);
y=0.4*sin(2*pi*40*t+140);
z=x+y;
subplot(2,2,1)
plot(x)
title('原信号z')
subplot(2,2,2)
plot(y)
title('分量信号x')
subplot(2,2,3)
plot(z)
title('分量信号y')
imf=emd(z);
emd_visu(z,1:length(z),imf)
>> [A,f,tt]=hhspectrum(imf);
??? Undefined function or method 'instfreq' for input arguments of type 'double'.
Error in ==> hhspectrum at 45
f(i,:)=instfreq(an(i,:)',tt,l)';
帮看看这个 matlab中 hhspectrum.m 文件 中 f(i,:)=instfreq(an(i,:)',tt,l)';哪错了???
依照如图
|
|