tjucruiser 发表于 2012-3-14 17:16

小波工具箱,概念的颠覆还是误解?!!!

level = 6;
= wfilters('db4');
%大家注意这里:
LO_D, the decomposition low-pass filter
      HI_D, the decomposition high-pass filter
      LO_R, the reconstruction low-pass filter
      HI_R, the reconstruction high-pass filter
但是后面的代码只用了LO_R,其他的一个没用,这是为什么,感觉和以往概念不同,以前不都是要概貌,用小波概貌系数来做,要细节,用小波细节系数来做。现在怎么一个全包了
= mrdwt(ewx,LO_R,level);
for k = 1:level
cx(k) = corrbound(LO_R,k,0);
end
thres = sqrt(2*log(N)*(1+cx))*sigma*gamma/3;
eyh = yh.*(abs(yh) > kron(thres,ones(N,3*N)));
ee = mirdwt(yl,eyh,LO_R,level);

ramonquan 发表于 2012-8-30 18:36

mrdwt ()这个函数应该是别人自己编写的函数,mathworks没有这个函数。如果有代码楼主可以贴出来
页: [1]
查看完整版本: 小波工具箱,概念的颠覆还是误解?!!!