cleverkitten
发表于 2012-5-10 08:32
plot_imf的定义是?
郭建
发表于 2012-5-10 20:37
我运行时有个错误 如下
??? Undefined function or method 'subplot_imf' for input
arguments of type 'double'.
Error in ==> Untitled2 at 24
subplot_imf(x,t,imf);
请问是什么意思?
zengwj0423
发表于 2012-5-11 10:21
又学到知识了
燕大雪雁
发表于 2012-5-17 11:09
回复 12 # hubiyang 的帖子
plot_imf是个子程序,代码如下:
function plot_imf(x,t,imf)
s = size(imf);
k = s(1);
figure;
for j = 1:k-1
subplot(k,1,j)
plot(t,imf(j,:))
ylabel(['imf',int2str(j)])
end
subplot(k,1,1)
title('Empirical Mode Decomposition')
subplot(k,1,k)
plot(t,imf(k,:),'r')
ylabel('res.')
xlabel('t/s')
end
将此程序保存为一个子程序即可。
燕大雪雁
发表于 2012-5-17 11:12
回复 16 # cleverkitten 的帖子
见19楼,代码已贴上
燕大雪雁
发表于 2012-5-17 11:12
回复 17 # 郭建 的帖子
见19#,plot_imf代码已贴上
dingdingysu
发表于 2012-5-17 21:43
plot_imf(x,t,imf);
这个函数 是不是也是自己编的 啊?
dingdingysu
发表于 2012-5-18 17:30
回复 12 # hubiyang 的帖子
是因为你没有这个子函数。plot_emd
dingdingysu
发表于 2012-5-18 17:37
imf2分量瞬时频率 咋和楼主的不一样呢???
hubiyang
发表于 2012-5-18 21:50
回复 23 # dingdingysu 的帖子
嗯 知道啦 谢谢
cdccdq
发表于 2012-5-20 21:20
不错的东西
cleverkitten
发表于 2012-5-21 08:05
回复 20 # 燕大雪雁 的帖子
谢谢你……
dingdingysu
发表于 2012-5-21 10:23
回复 25 # hubiyang 的帖子
什么意思呢?
李清志
发表于 2012-5-21 16:01
回复 1 # 燕大雪雁 的帖子
我也是燕大的,也要用HHT,可以联系下吗?373071914@qq.com
shnyxpvib
发表于 2012-5-21 18:23
太棒了,谢谢分享