求助:EMD 的重建函数 reconstruction(IMF)
高手帮帮忙~ 我现在有所有基本的emd的 .m文档, 可我现在想用原有的函数编 重建函数。顺序分解的emd.m是从original-->IMF1-->IMF2-->IMF3-->...........remainder(r)
我现在要写一个函数 function x = reconstruction (imf)
可以从remainder(r)--->IMF3--->IMF2--->IMF1--->original
各位高手帮帮忙吧,我是个新手。。。谢谢了~~~
回复 楼主 的帖子
同问!急!!!请各位高手帮帮忙吧!!!回复 2楼 的帖子
那个我刚写出来了~function =reconstruction(c)
% xt is orignal signal
% c is IMF
=size(c) % c is 4*342, so xt will be 4*342; m is number of IMF
x=zeros(1,n)
for i=1:n
for j=1:m
x(i)=x(i)+c(j,i)
end
end
你试试
页:
[1]